mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-08 18:11:52 +00:00
12 lines
387 B
HTML
12 lines
387 B
HTML
<!DOCTYPE html>
|
|
<script src="include.js"></script>
|
|
<body><table><tr>PASS</tr></table></body>
|
|
<script>
|
|
test(() => {
|
|
// Remove the table. "PASS" should still be visible,
|
|
// as the HTML parser inserts it *before* the table
|
|
// under these circumstances.
|
|
document.querySelector("table").remove()
|
|
println(document.body.innerText);
|
|
});
|
|
</script>
|