summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/moving-between-documents/ordering/delay-load-event-2.html
blob: 916673894dc174fc16b785b059b3861bbcb35935 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<meta charset="utf-8">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="helper.js"></script>

<body>
<script>
runDelayEventTest('Script elements (async)');

const script = document.createElement('script');
script.setAttribute('id', 'to-be-moved');
script.setAttribute('src', '../../resources/throw.js?pipe=trickle(d3)');
document.body.appendChild(script);
</script>