()
| 9341 | // - adds and immediately removes script elements from the document |
| 9342 | var script = rawDocument.createElement('script'), |
| 9343 | doneWrapper = function() { |
| 9344 | rawDocument.body.removeChild(script); |
| 9345 | if (done) done(); |
| 9346 | }; |
| 9347 | |
| 9348 | script.type = 'text/javascript'; |
| 9349 | script.src = url; |
no test coverage detected