1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/generic/crashtests/682649-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,18 @@ 1.4 +<!DOCTYPE html> 1.5 +<html style="position: relative; -moz-column-count: 3;" class="reftest-wait"> 1.6 + 1.7 +<head> 1.8 +<script> 1.9 +function boom() 1.10 +{ 1.11 + document.documentElement.offsetHeight; 1.12 + document.body.style.position = ""; 1.13 + document.documentElement.offsetHeight; 1.14 + document.documentElement.removeAttribute("class"); 1.15 +} 1.16 +</script> 1.17 +</head> 1.18 + 1.19 +<body onload="boom();" style="position: absolute;">A<span><div></div>B</span></body> 1.20 + 1.21 +</html>