ieemu.js 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. var ie = document.all != null;
  2. var moz = !ie && document.getElementById != null && document.layers == null;
  3. /*
  4. * Extends the event object with srcElement, cancelBubble, returnValue,
  5. * fromElement and toElement
  6. */
  7. function extendEventObject() {
  8. Event.prototype.__defineSetter__("returnValue", function (b) {
  9. if (!b) this.preventDefault();
  10. });
  11. Event.prototype.__defineSetter__("cancelBubble", function (b) {
  12. if (b) this.stopPropagation();
  13. });
  14. Event.prototype.__defineGetter__("srcElement", function () {
  15. var node = this.target;
  16. while (node.nodeType != 1) node = node.parentNode;
  17. return node;
  18. });
  19. Event.prototype.__defineGetter__("fromElement", function () {
  20. var node;
  21. if (this.type == "mouseover")
  22. node = this.relatedTarget;
  23. else if (this.type == "mouseout")
  24. node = this.target;
  25. if (!node) return;
  26. while (node.nodeType != 1) node = node.parentNode;
  27. return node;
  28. });
  29. Event.prototype.__defineGetter__("toElement", function () {
  30. var node;
  31. if (this.type == "mouseout")
  32. node = this.relatedTarget;
  33. else if (this.type == "mouseover")
  34. node = this.target;
  35. if (!node) return;
  36. while (node.nodeType != 1) node = node.parentNode;
  37. return node;
  38. });
  39. Event.prototype.__defineGetter__("offsetX", function () {
  40. return this.layerX;
  41. });
  42. Event.prototype.__defineGetter__("offsetY", function () {
  43. return this.layerY;
  44. });
  45. }
  46. /*
  47. * Emulates element.attachEvent as well as detachEvent
  48. */
  49. function emulateAttachEvent() {
  50. HTMLDocument.prototype.attachEvent =
  51. HTMLElement.prototype.attachEvent = function (sType, fHandler) {
  52. var shortTypeName = sType.replace(/on/, "");
  53. fHandler._ieEmuEventHandler = function (e) {
  54. window.event = e;
  55. return fHandler();
  56. };
  57. this.addEventListener(shortTypeName, fHandler._ieEmuEventHandler, false);
  58. };
  59. HTMLDocument.prototype.detachEvent =
  60. HTMLElement.prototype.detachEvent = function (sType, fHandler) {
  61. var shortTypeName = sType.replace(/on/, "");
  62. if (typeof fHandler._ieEmuEventHandler == "function")
  63. this.removeEventListener(shortTypeName, fHandler._ieEmuEventHandler, false);
  64. else
  65. this.removeEventListener(shortTypeName, fHandler, true);
  66. };
  67. }
  68. /*
  69. * This function binds the event object passed along in an
  70. * event to window.event
  71. */
  72. function emulateEventHandlers(eventNames) {
  73. for (var i = 0; i < eventNames.length; i++) {
  74. document.addEventListener(eventNames[i], function (e) {
  75. window.event = e;
  76. }, true); // using capture
  77. }
  78. }
  79. /*
  80. * Simple emulation of document.all
  81. * this one is far from complete. Be cautious
  82. */
  83. function emulateAllModel() {
  84. var allGetter = function () {
  85. var a = this.getElementsByTagName("*");
  86. var node = this;
  87. a.tags = function (sTagName) {
  88. return node.getElementsByTagName(sTagName);
  89. };
  90. return a;
  91. };
  92. HTMLDocument.prototype.__defineGetter__("all", allGetter);
  93. HTMLElement.prototype.__defineGetter__("all", allGetter);
  94. }
  95. function extendElementModel() {
  96. HTMLElement.prototype.__defineGetter__("parentElement", function () {
  97. if (this.parentNode == this.ownerDocument) return null;
  98. return this.parentNode;
  99. });
  100. HTMLElement.prototype.__defineGetter__("children", function () {
  101. var tmp = [];
  102. var j = 0;
  103. var n;
  104. for (var i = 0; i < this.childNodes.length; i++) {
  105. n = this.childNodes[i];
  106. if (n.nodeType == 1) {
  107. tmp[j++] = n;
  108. if (n.name) { // named children
  109. if (!tmp[n.name])
  110. tmp[n.name] = [];
  111. tmp[n.name][tmp[n.name].length] = n;
  112. }
  113. if (n.id) // child with id
  114. tmp[n.id] = n
  115. }
  116. }
  117. return tmp;
  118. });
  119. HTMLElement.prototype.contains = function (oEl) {
  120. if (oEl == this) return true;
  121. if (oEl == null) return false;
  122. return this.contains(oEl.parentNode);
  123. };
  124. }
  125. /*
  126. document.defaultView.getComputedStyle(el1,<BR>null).getPropertyValue('top');
  127. */
  128. function emulateCurrentStyle(properties) {
  129. HTMLElement.prototype.__defineGetter__("currentStyle", function () {
  130. var cs = {};
  131. var el = this;
  132. for (var i = 0; i < properties.length; i++) {
  133. //cs.__defineGetter__(properties[i], function () {
  134. // window.status = "i: " + i ;
  135. // return document.defaultView.getComputedStyle(el, null).getPropertyValue(properties[i]);
  136. //});
  137. cs.__defineGetter__(properties[i], encapsulateObjects(el, properties[i]));
  138. }
  139. return cs;
  140. });
  141. }
  142. // used internally for emualteCurrentStyle
  143. function encapsulateObjects(el, sProperty) {
  144. return function () {
  145. return document.defaultView.getComputedStyle(el, null).getPropertyValue(sProperty);
  146. };
  147. }
  148. function emulateHTMLModel() {
  149. // This function is used to generate a html string for the text properties/methods
  150. // It replaces '\n' with "<BR"> as well as fixes consecutive white spaces
  151. // It also repalaces some special characters
  152. function convertTextToHTML(s) {
  153. s = s.replace(/\&/g, "&amp;").replace(/</g, "&lt;").replace(/>/g, "&gt;").replace(/\n/g, "<BR>");
  154. while (/\s\s/.test(s))
  155. s = s.replace(/\s\s/, "&nbsp; ");
  156. return s.replace(/\s/g, " ");
  157. }
  158. HTMLElement.prototype.insertAdjacentHTML = function (sWhere, sHTML) {
  159. var df; // : DocumentFragment
  160. var r = this.ownerDocument.createRange();
  161. switch (String(sWhere).toLowerCase()) {
  162. case "beforebegin":
  163. r.setStartBefore(this);
  164. df = r.createContextualFragment(sHTML);
  165. this.parentNode.insertBefore(df, this);
  166. break;
  167. case "afterbegin":
  168. r.selectNodeContents(this);
  169. r.collapse(true);
  170. df = r.createContextualFragment(sHTML);
  171. this.insertBefore(df, this.firstChild);
  172. break;
  173. case "beforeend":
  174. r.selectNodeContents(this);
  175. r.collapse(false);
  176. df = r.createContextualFragment(sHTML);
  177. this.appendChild(df);
  178. break;
  179. case "afterend":
  180. r.setStartAfter(this);
  181. df = r.createContextualFragment(sHTML);
  182. this.parentNode.insertBefore(df, this.nextSibling);
  183. break;
  184. }
  185. };
  186. HTMLElement.prototype.__defineSetter__("outerHTML", function (sHTML) {
  187. var r = this.ownerDocument.createRange();
  188. r.setStartBefore(this);
  189. var df = r.createContextualFragment(sHTML);
  190. this.parentNode.replaceChild(df, this);
  191. return sHTML;
  192. });
  193. HTMLElement.prototype.__defineGetter__("canHaveChildren", function () {
  194. switch (this.tagName) {
  195. case "AREA":
  196. case "BASE":
  197. case "BASEFONT":
  198. case "COL":
  199. case "FRAME":
  200. case "HR":
  201. case "IMG":
  202. case "BR":
  203. case "INPUT":
  204. case "ISINDEX":
  205. case "LINK":
  206. case "META":
  207. case "PARAM":
  208. return false;
  209. }
  210. return true;
  211. });
  212. HTMLElement.prototype.__defineGetter__("outerHTML", function () {
  213. var attr, attrs = this.attributes;
  214. var str = "<" + this.tagName;
  215. for (var i = 0; i < attrs.length; i++) {
  216. attr = attrs[i];
  217. if (attr.specified)
  218. str += " " + attr.name + '="' + attr.value + '"';
  219. }
  220. if (!this.canHaveChildren)
  221. return str + ">";
  222. return str + ">" + this.innerHTML + "</" + this.tagName + ">";
  223. });
  224. HTMLElement.prototype.__defineSetter__("innerText", function (sText) {
  225. this.innerHTML = convertTextToHTML(sText);
  226. return sText;
  227. });
  228. var tmpGet;
  229. HTMLElement.prototype.__defineGetter__("innerText", tmpGet = function () {
  230. var r = this.ownerDocument.createRange();
  231. r.selectNodeContents(this);
  232. return r.toString();
  233. });
  234. HTMLElement.prototype.__defineSetter__("outerText", function (sText) {
  235. this.outerHTML = convertTextToHTML(sText);
  236. return sText;
  237. });
  238. HTMLElement.prototype.__defineGetter__("outerText", tmpGet);
  239. HTMLElement.prototype.insertAdjacentText = function (sWhere, sText) {
  240. this.insertAdjacentHTML(sWhere, convertTextToHTML(sText));
  241. };
  242. }