(parent, child)
| 7051 | } |
| 7052 | |
| 7053 | function contains(parent, child) { |
| 7054 | if (parent.contains) |
| 7055 | return parent.contains(child); |
| 7056 | while (child = child.parentNode) |
| 7057 | if (child == parent) return true; |
| 7058 | } |
| 7059 | |
| 7060 | function activeElt() { return document.activeElement; } |
| 7061 | // Older versions of IE throws unspecified error when touching |
no outgoing calls
no test coverage detected