summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/old-tests/submission/Opera/script_scheduling/094.html
blob: 44fd7b559090c9898f8eb7f6b025f2bf876756d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html><head>
	<title> scheduler: parser-created defer script after document load</title>
	<script src="/resources/testharness.js"></script>
	<script src="/resources/testharnessreport.js"></script>
	<script src="testlib/testlib.js"></script>
</head>
<body>

	<div id="log">FAILED (This TC requires JavaScript enabled)</div>
	<iframe id="myFrame"></iframe>

	<script>
          var t = async_test(undefined, {timeout:3500});
          onload = t.step_func(function() {
            var doc = document.getElementById("myFrame").contentDocument;
            var win = document.getElementById("myFrame").contentWindow;
            doc.open();
            doc.write("<title> scheduler: parser-created defer script after document load</title><script src='/resources/testharness.js'><\/script><script src='/resources/testharnessreport.js'><\/script><script src='testlib/testlib.js'><\/script><script>var t=async_test()<\/script><div id=log></div><script defer src='data:text/javascript,parent.t.done();'><\/script>");
            doc.close();
          })
        </script>
</body></html>