FirefoxExtensions.js 2.6 KB

123456
  1. // Licensed Materials - Property of IBM
  2. // IBM Cognos Products: hal
  3. // (C) Copyright IBM Corp. 2003, 2017.
  4. // US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  5. XMLDocument.prototype.__defineGetter__("parseError",function(){var _h7Q='http://www.mozilla.org/newlayout/xml/parsererror.xml';var n=this.documentElement;var _hME1={};_hME1.errorCode=0;_hME1.srcText=null;_hME1.reason=null;_hME1.url=null;_hME1.line=0;_hME1.linepos=0;if(n==null){_hME1.errorCode=2;_hME1.reason="The document element is empty. This implies that the system cannot locate the object specified.";}else if(n.nodeName=='parsererror' &&n.namespaceURI==_h7Q){_hME1.errorCode=1;var _hNE1=n.getElementsByTagNameNS(_h7Q, 'sourcetext')[0];if(_hNE1!=null){_hME1.srcText=_hNE1.firstChild.data;}var _hOE1=n.firstChild.data;var _hF32=_hOE1.indexOf("Location: ");var _hWL1=_hF32+"Location: ".length;var _h3Y1=_hOE1.indexOf("Line Number ");var _hPE1=_h3Y1+"Line Number ".length;var _hG32=_hOE1.indexOf("Column ");var _hXL1=_hG32+"Column ".length;if(_hF32!=-1&&_h3Y1!=-1&&_hG32!=-1){_hME1.reason=_hOE1.substring(0,_hF32);_hME1.url=_hOE1.substring(_hWL1, _h3Y1);_hME1.line=_hOE1.substring(_hPE1, _hG32);_hME1.line=parseInt(_hME1.line, 10);_hME1.linepos=_hOE1.substring(_hXL1);_hME1.linepos=parseInt(_hME1.linepos, 10);}else{_hME1.reason=n.firstChild.data;}}return _hME1;});if(typeof document.elementFromPoint=='undefined'){HTMLDocument.prototype.elementFromPoint=function(x,y){this.addEventListener("mousemove", this._hH3, false);var _hMD2=this.documentElement.getBoundingClientRect();var e=this.createEvent("MouseEvents");e.M_bIsElementFromPointEvent=true;e.initMouseEvent("mousemove", true, false, this.defaultView, 0, x+_hMD2.screenX, y + _hMD2.screenY, x, y, false, false, false, false, 0, null);this.dispatchEvent(e);this.removeEventListener("mousemove", this._hH3, false);return this._h6F;};};HTMLDocument.prototype._h6F=null;HTMLDocument.prototype._hH3=function(e){this._h6F=e.explicitOriginalTarget;if(this._h6F.nodeType==U_XML.K_iNODE_TEXT){this._h6F=this._h6F.parentNode;}switch(this._h6F.nodeName){case "HTML":case "#document":this._h6F=this.getElementsByTagName("BODY").item(0);}e.preventDefault();e.stopPropagation();};Node.prototype.__defineGetter__("xml",function(){return(new XMLSerializer()).serializeToString(this);});HTMLElement.prototype.__defineGetter__("outerHTML",function(){return this.xml;});HTMLElement.prototype.__defineSetter__("outerHTML",function(s){var rng=this.ownerDocument.createRange();rng.setStartBefore(this);var frag=rng.createContextualFragment(s);this.parentNode.replaceChild(frag, this);});