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_col_width_crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<table rules="cols">
<caption>caption</caption>
<col id="target" style="width:50%"/>
<tbody>
<tr></tr>
</tbody>
</table>
<script>
document.body.offsetTop;
document.getElementById('target').style.width = 'auto';
</script>