1
0
Fork 0
firefox/testing/web-platform/tests/css/css-tables/crashtests/table-column-display-change-chrome-crash.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

16 lines
344 B
HTML

<!doctype html>
<link rel="help" href="https://crbug.com/1338779">
<table id="table">
<td>
<span id="span1"></span>
<div id="div">
<span id="span2"></span>
</div>
</td>
</table>
<script>
document.body.offsetLeft;
div.style.color = "green";
table.style.display = "table-column";
span2.replaceWith(span1);
</script>