1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/base/crashtests/369176-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,37 @@ 1.4 +<!DOCTYPE html> 1.5 +<html class="reftest-wait"> 1.6 +<head> 1.7 + 1.8 +<script> 1.9 + 1.10 +function boom() 1.11 +{ 1.12 + document.getElementById("f").className = 'q'; 1.13 + document.documentElement.removeAttribute("class"); 1.14 +} 1.15 + 1.16 +</script> 1.17 + 1.18 +<style> 1.19 + 1.20 +body { 1.21 + width: 10em; 1.22 +} 1.23 + 1.24 +#f:after { 1.25 + content: "TTT"; 1.26 +} 1.27 + 1.28 +</style> 1.29 + 1.30 +</head> 1.31 + 1.32 +<body onload="setTimeout(boom, 0);"> 1.33 + 1.34 +<span id="f">foo foo foo foo foo foo foo foo foo foo<span style="display: block"></span></span> 1.35 + 1.36 + 1.37 +</div> 1.38 + 1.39 +</body> 1.40 +</html>