script-onload-insertion-point.html (457B)
1 <!doctype html> 2 <meta charset=utf-8> 3 <title>Test that the insertion point is defined in the load event of a parser-inserted script.</title> 4 <script src=/resources/testharness.js></script> 5 <script src=/resources/testharnessreport.js></script> 6 <script> 7 var t = async_test(""); 8 var writeDone = t.step_func_done(function(text) { 9 assert_equals(text, "Some text"); 10 }); 11 </script> 12 <iframe src="support/script-onload-insertion-point-helper.html"></iframe>