summaryrefslogtreecommitdiffstats
path: root/layout/tables/crashtests/462849.xhtml
blob: 0f98d15ef13b5fbded9cff8c0ec241dd6f3d8069 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<html xmlns="http://www.w3.org/1999/xhtml">

<table style="border-collapse: collapse;">
<colgroup span="2" id="b">
<col id="a"/>
</colgroup>
</table>

<script xmlns="http://www.w3.org/1999/xhtml">
<![CDATA[
function doe() {
  document.getElementById('a').remove(); 
  document.getElementById('b').style.borderLeft = "6px inset green"; 
  }
  document.documentElement.offsetHeight;
  setTimeout(doe, 0);
]]>

</script>
</html>