mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-24 02:09:28 +00:00
We were mistakenly executing the current node's script instead of the document's pending parsing-blocking script. This caused ~1000 WPT tests to time out, since we never ended up firing a load event for XHTML pages that load multiple external scripts.
11 lines
174 B
HTML
11 lines
174 B
HTML
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<body>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
println("PASS");
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|