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/dynamic_table_layout_crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<table id="target" style="border: solid; border-collapse: collapse; table-layout: fixed; width: 50px;">
<tr><td style="background: lime;">hi</td></tr>
<td colspan=3>there</td>
</table>
<script>
document.body.offsetTop;
document.getElementById('target').style.tableLayout = 'auto';
</script>