Skip to content

Commit

Permalink
Fix 128.html
Browse files Browse the repository at this point in the history
The spec says that a script must be immediately prepared whenever "the script element
is connected and a node or document fragment is inserted into the script element,
after any script elements inserted at that time."
  • Loading branch information
nox committed Jan 14, 2017
1 parent 4c38bec commit 6d33f36
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.

This file was deleted.

Expand Up @@ -28,7 +28,7 @@
});

onload = t.step_func(function() {
assert_array_equals(eventOrder, ["inline script #1", "inline script #2", "inline script #3", "end inline script #2", "end inline script #1"]);
assert_array_equals(eventOrder, ["inline script #1", "inline script #3", "inline script #2", "end inline script #2", "end inline script #1"]);
t.done();
});
</script>

0 comments on commit 6d33f36

Please sign in to comment.