Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-tables/crashtests/table-column-display-change-chrome-crash.html - WPT Dashboard Interop Dashboard
<!doctype html>
<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>