summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/execution-timing/scripts/include-5.js
blob: 52952d737918964bb3475a20ac7326d58d68b53a (plain)
1
2
3
4
5
6
7
log('include-5 before removing scripts');
var scripts=[].slice.call(document.getElementsByTagName('script'), 3);
for(var i = 0; i < scripts.length; i++) {
    var s = scripts[i];
    s.parentNode.removeChild(s);
}
log('include-5 after removing scripts');