1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/content/base/crashtests/399712-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,29 @@ 1.4 +<html class="reftest-wait"> 1.5 +<head> 1.6 +<script> 1.7 + 1.8 +function boom() 1.9 +{ 1.10 + document.getElementById("ta").style.overflow = "scroll"; 1.11 + setTimeout(boom2, 12); 1.12 +} 1.13 + 1.14 +function boom2() 1.15 +{ 1.16 + document.getElementById("ta").style.overflow = ""; 1.17 + setTimeout(boom, 12); 1.18 +} 1.19 + 1.20 +function cont() 1.21 +{ 1.22 + document.documentElement.removeAttribute("class"); 1.23 +} 1.24 +</script> 1.25 +</head> 1.26 + 1.27 +<body onload="boom(); setTimeout(cont, 800);"> 1.28 + 1.29 +<textarea id="ta">x</textarea> 1.30 + 1.31 +</body> 1.32 +</html>