()
| 3075 | var B = Prototype.Browser, doc = document, element, property = {}; |
| 3076 | |
| 3077 | function getRootElement() { |
| 3078 | if (B.WebKit && !doc.evaluate) |
| 3079 | return document; |
| 3080 | |
| 3081 | if (B.Opera && window.parseFloat(window.opera.version()) < 9.5) |
| 3082 | return document.body; |
| 3083 | |
| 3084 | return document.documentElement; |
| 3085 | } |
| 3086 | |
| 3087 | function define(D) { |
| 3088 | if (!element) element = getRootElement(); |
no test coverage detected
searching dependent graphs…