OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <meta charset=utf-8> | 2 <meta charset=utf-8> |
3 <title>The end: DOMContentLoaded and defer scripts</title> | 3 <title>The end: DOMContentLoaded and defer scripts</title> |
4 <link rel=help href="https://html.spec.whatwg.org/multipage/#the-end"> | 4 <link rel=help href="https://html.spec.whatwg.org/multipage/#the-end"> |
5 <script src="../../../../../resources/testharness.js"></script> | 5 <script src="../../../../../resources/testharness.js"></script> |
6 <script src="../../../../../resources/testharnessreport.js"></script> | 6 <script src="../../../../../resources/testharnessreport.js"></script> |
7 <div id="log"></div> | 7 <div id="log"></div> |
8 <script> | 8 <script> |
9 var dcl; | 9 var dcl; |
10 var t = async_test(function() { | 10 var t = async_test(function() { |
11 dcl = false; | 11 dcl = false; |
12 document.addEventListener("DOMContentLoaded", function(e) { | 12 document.addEventListener("DOMContentLoaded", function(e) { |
13 dcl = true; | 13 dcl = true; |
14 }); | 14 }); |
15 }); | 15 }); |
16 </script> | 16 </script> |
17 <script defer src=DOMContentLoaded-defer-support.js></script> | 17 <script defer src=DOMContentLoaded-defer-support.js></script> |
OLD | NEW |