mirror of
https://github.com/servo/servo
synced 2026-05-10 00:52:08 +02:00
32 lines
711 B
HTML
32 lines
711 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
|
|
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>XHTML Test: HTMLScriptElement - defer</title>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<meta charset="utf-8" />
|
|
</head>
|
|
<body>
|
|
<div id="log"></div>
|
|
|
|
<script>
|
|
|
|
let script_run_status = "inline";
|
|
let t = async_test("the defer script run later");
|
|
|
|
</script>
|
|
|
|
<script type="text/javascript" src="defer.js" defer="defer"></script>
|
|
|
|
<script>
|
|
|
|
t.step(() => {
|
|
assert_equals(script_run_status, "inline", "the script run status");
|
|
script_run_status = "deferred";
|
|
});
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|