1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/base/crashtests/374297-2.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,23 @@ 1.4 +<html class="reftest-wait"> 1.5 +<head> 1.6 +<script> 1.7 + 1.8 +function boom() { 1.9 + var $table2 = document.getElementById('table2'); 1.10 + $table2.setAttribute('width', '30%'); 1.11 + var $th273 = document.getElementById('th273'); 1.12 + $th273.style.position = "relative"; 1.13 + 1.14 + document.documentElement.removeAttribute("class"); 1.15 +} 1.16 + 1.17 +</script> 1.18 +</head> 1.19 + 1.20 + 1.21 +<body onload="setTimeout(boom,30)"> 1.22 + 1.23 +<table id="table2"><tr><div><th id="th273"></th></div></table> 1.24 + 1.25 +</body> 1.26 +</html>