1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/generic/crashtests/371348-1.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,41 @@ 1.4 +<html xmlns="http://www.w3.org/1999/xhtml" 1.5 + xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 1.6 + class="reftest-wait"> 1.7 + 1.8 +<head> 1.9 +<script> 1.10 + 1.11 +function boom() 1.12 +{ 1.13 + var span = document.getElementById("span"); 1.14 + var table = document.getElementById("table"); 1.15 + 1.16 + table.appendChild(span); 1.17 + 1.18 + document.documentElement.removeAttribute("class"); 1.19 +} 1.20 + 1.21 +</script> 1.22 +</head> 1.23 + 1.24 + 1.25 +<body onload="setTimeout(boom, 20)"> 1.26 + 1.27 +<span id="span"></span> 1.28 + 1.29 +<table id="table"> 1.30 + <tbody> 1.31 + <tr> 1.32 + <td style="float: left"> 1.33 + Table 1.34 + <xul:box> 1.35 + <input type="checkbox"/> 1.36 + </xul:box> 1.37 + cell 1.38 + </td> 1.39 + </tr> 1.40 + </tbody> 1.41 +</table> 1.42 + 1.43 +</body> 1.44 +</html>