(e, str)
| 5682 | } |
| 5683 | |
| 5684 | function setTextContent(e, str) { |
| 5685 | if (ie_lt9) { |
| 5686 | e.innerHTML = ""; |
| 5687 | e.appendChild(document.createTextNode(str)); |
| 5688 | } else e.textContent = str; |
| 5689 | } |
| 5690 | |
| 5691 | function getRect(node) { |
| 5692 | return node.getBoundingClientRect(); |
no test coverage detected