mirror of
https://github.com/servo/servo.git
synced 2025-08-05 21:50:18 +01:00
Fix and reindent /old-tests/submission/Opera/script_scheduling/119.html
This commit is contained in:
parent
80c6383140
commit
fad6a3a65c
1 changed files with 25 additions and 26 deletions
|
@ -1,32 +1,31 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html><head>
|
<html><head>
|
||||||
<title>scheduler: external defer script created with createContextualFragment</title>
|
<title>scheduler: external defer script created with createContextualFragment</title>
|
||||||
<script src="/resources/testharness.js"></script>
|
<script src="/resources/testharness.js"></script>
|
||||||
<script src="/resources/testharnessreport.js"></script>
|
<script src="/resources/testharnessreport.js"></script>
|
||||||
<script src="testlib/testlib.js"></script>
|
<script src="testlib/testlib.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<div id="log"></div>
|
<body>
|
||||||
<script>
|
<div id="log"></div>
|
||||||
log('inline script #1');
|
<script>
|
||||||
var t = async_test();
|
log('inline script #1');
|
||||||
|
var t = async_test();
|
||||||
t.step(function() {
|
|
||||||
var range = document.createRange();
|
|
||||||
var fragment = range.createContextualFragment("<script defer src='scripts/include-1.js?pipe=trickle(d1)'><\/script>");
|
|
||||||
document.body.appendChild(fragment.firstChild);
|
|
||||||
});
|
|
||||||
|
|
||||||
addEventListener("DOMContentLoaded", t.step_func(function() {
|
|
||||||
assert_array_equals(eventOrder, ['inline script #1', 'end inline script #1']);
|
|
||||||
t.done();
|
|
||||||
}));
|
|
||||||
|
|
||||||
addEventListener("load", t.step_func(function() {
|
t.step(function () {
|
||||||
assert_array_equals(eventOrder, ['inline script #1', 'end inline script #1', 'external script #1']);
|
var range = document.createRange();
|
||||||
t.done();
|
var fragment = range.createContextualFragment("<script defer src='scripts/include-1.js?pipe=trickle(d1)'><\/script>");
|
||||||
}));
|
document.body.appendChild(fragment.firstChild);
|
||||||
|
});
|
||||||
|
|
||||||
log('end inline script #1');
|
addEventListener("DOMContentLoaded", t.step_func(function () {
|
||||||
</script>
|
assert_array_equals(eventOrder, ['inline script #1', 'end inline script #1']);
|
||||||
|
}));
|
||||||
|
|
||||||
|
addEventListener("load", t.step_func_done(function () {
|
||||||
|
assert_array_equals(eventOrder, ['inline script #1', 'end inline script #1', 'external script #1']);
|
||||||
|
}));
|
||||||
|
|
||||||
|
log('end inline script #1');
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue