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/rtl-replace-cells-with-colspan-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<div id="container" style="direction:rtl;">
<div style="display:table-cell;"></div>
<div id="remove1" style="display:table-cell;"></div>
<div id="remove2" style="display:table-cell;"></div>
<div id="rowLater" style="display:none;"></div>
</div>
<script>
var cell = document.createElement('td');
cell.setAttribute('colspan', '3');
cell.style.display = "none";
rowLater.appendChild(cell);
document.body.offsetTop;
remove1.style.display = "none";
remove2.style.display = "none";
rowLater.style.display = "table-row";
document.body.offsetTop;
cell.style.display = "table-cell";
</script>