(elem)
| 59 | } |
| 60 | |
| 61 | function removeChildren(elem) { |
| 62 | while (elem.firstChild) { |
| 63 | elem.removeChild(elem.firstChild); |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | // Helper to parse a url into its building blocks. |
| 68 | function parseURL(url) { |
no outgoing calls
no test coverage detected