1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/forms/crashtests/370940-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,28 @@ 1.4 +<html class="reftest-wait"> 1.5 +<head> 1.6 +<script> 1.7 + 1.8 +var HTML_NS = "http://www.w3.org/1999/xhtml"; 1.9 + 1.10 +function boom1() 1.11 +{ 1.12 + var newSpan = document.createElementNS(HTML_NS, "span"); 1.13 + document.body.appendChild(newSpan); 1.14 + 1.15 + setTimeout(boom2, 30); 1.16 +} 1.17 + 1.18 +function boom2() 1.19 +{ 1.20 + var newDiv = document.createElementNS(HTML_NS, "div"); 1.21 + document.getElementById("s").appendChild(newDiv); 1.22 + document.documentElement.removeAttribute("class"); 1.23 +} 1.24 + 1.25 +</script> 1.26 +</head> 1.27 +<body onload="setTimeout(boom1, 30);"> 1.28 + <p>العربي</p> 1.29 + <span id="s"></span><input><select></select><isindex><span></span> 1.30 +</body> 1.31 +</html>