1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/base/crashtests/337268-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,45 @@ 1.4 +<html class="reftest-wait"> 1.5 +<head> 1.6 +<script> 1.7 + 1.8 +window.addEventListener("load", foo1, false); 1.9 + 1.10 +function foo1() 1.11 +{ 1.12 + document.getElementById("a").style.width = "20em"; 1.13 + setTimeout(foo2, 30); 1.14 +} 1.15 + 1.16 +function foo2() 1.17 +{ 1.18 + document.getElementById("b").style.width = "auto"; 1.19 + document.documentElement.removeAttribute("class"); 1.20 +} 1.21 + 1.22 +</script> 1.23 +</head> 1.24 + 1.25 +<body> 1.26 + 1.27 +<table> 1.28 +<tr> 1.29 +<td id="a"> 1.30 + 1.31 +<table style="display: -moz-inline-box;"> 1.32 +<tr> 1.33 +<td width="100%"> 1.34 + 1.35 +XXX XXX 1.36 + 1.37 +<div id="b" style="width: 200%; display: table-column-group;"></div> 1.38 + 1.39 +</td> 1.40 +</tr> 1.41 +</table> 1.42 + 1.43 +</td> 1.44 +</tr> 1.45 +</table> 1.46 + 1.47 +</body> 1.48 +</html> 1.49 \ No newline at end of file