(e, str)
| 5016 | } |
| 5017 | |
| 5018 | function setTextContent(e, str) { |
| 5019 | if (ie_lt9) { |
| 5020 | e.innerHTML = ""; |
| 5021 | e.appendChild(document.createTextNode(str)); |
| 5022 | } else e.textContent = str; |
| 5023 | } |
| 5024 | |
| 5025 | function getRect(node) { |
| 5026 | return node.getBoundingClientRect(); |
no outgoing calls
no test coverage detected