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/table-collapsed-row-or-column-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<div style="display: table; visibility: collapse">
<div id="scroller" style="overflow: scroll"></div>
</div>
<table>
<colgroup>
<col style="background: green; visibility: collapse">
</colgroup>
<tr>
<td><div id="scroller2" style="overflow: scroll"></div></td>
</tr>
</table>
<script>
scroller.scrollTo();
scroller2.scrollTo();
</script>