1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/tables/crashtests/462849.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,20 @@ 1.4 +<html xmlns="http://www.w3.org/1999/xhtml"> 1.5 + 1.6 +<table style="border-collapse: collapse;"> 1.7 +<colgroup span="2" id="b"> 1.8 +<col id="a"/> 1.9 +</colgroup> 1.10 +</table> 1.11 + 1.12 +<script xmlns="http://www.w3.org/1999/xhtml"> 1.13 +<![CDATA[ 1.14 +function doe() { 1.15 + document.getElementById('a').parentNode.removeChild(document.getElementById('a')); 1.16 + document.getElementById('b').style.borderLeft = "6px inset green"; 1.17 + } 1.18 + document.documentElement.offsetHeight; 1.19 + setTimeout(doe, 0); 1.20 +]]> 1.21 + 1.22 +</script> 1.23 +</html>