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