mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
11 lines
329 B
HTML
11 lines
329 B
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()
|
||
|
|
});
|
||
|
|
</script>
|