Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that disables it given conditions:
- This WPT test may be referenced by the following Test IDs:
- /html/syntax/parsing/DOMContentLoaded-defer.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset=utf-8>
<title>The end: DOMContentLoaded and defer scripts</title>
<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>