mirror of
https://github.com/servo/servo.git
synced 2025-08-05 05:30:08 +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>
|
||||
<html><head>
|
||||
<title>scheduler: external defer script created with createContextualFragment</title>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script src="testlib/testlib.js"></script>
|
||||
<title>scheduler: external defer script created with createContextualFragment</title>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script src="testlib/testlib.js"></script>
|
||||
</head>
|
||||
<div id="log"></div>
|
||||
<script>
|
||||
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();
|
||||
}));
|
||||
<body>
|
||||
<div id="log"></div>
|
||||
<script>
|
||||
log('inline script #1');
|
||||
var t = async_test();
|
||||
|
||||
addEventListener("load", t.step_func(function() {
|
||||
assert_array_equals(eventOrder, ['inline script #1', 'end inline script #1', 'external script #1']);
|
||||
t.done();
|
||||
}));
|
||||
|
||||
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);
|
||||
});
|
||||
|
||||
log('end inline script #1');
|
||||
</script>
|
||||
addEventListener("DOMContentLoaded", t.step_func(function () {
|
||||
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