1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/gfx/tests/crashtests/394384-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,26 @@ 1.4 +<html class="reftest-wait"> 1.5 +<head> 1.6 +<script> 1.7 + 1.8 +function boom() 1.9 +{ 1.10 + var t1 = document.createTextNode(String.fromCharCode(0x2011) + String.fromCharCode(13)); 1.11 + document.body.appendChild(t1); 1.12 + 1.13 + setTimeout(boom2, 30); 1.14 +} 1.15 + 1.16 +function boom2() 1.17 +{ 1.18 + var letterA = document.createTextNode(String.fromCharCode(65)); 1.19 + document.body.appendChild(letterA); 1.20 + 1.21 + document.documentElement.removeAttribute("class"); 1.22 +} 1.23 + 1.24 +</script> 1.25 +</head> 1.26 + 1.27 +<body onload="setTimeout(boom, 50);"></body> 1.28 + 1.29 +</html>