1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/base/crashtests/589787.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,27 @@ 1.4 +<!DOCTYPE html> 1.5 +<html> 1.6 +<head> 1.7 +<script> 1.8 +function boom() { 1.9 + document.documentElement.offsetHeight; 1.10 + document.getElementById('e').setAttribute('style', ''); 1.11 + document.documentElement.offsetHeight; 1.12 +} 1.13 +</script> 1.14 +<style id="e"> 1.15 +body #a::after { content: "before text"; position: fixed; } 1.16 +</style> 1.17 +</head> 1.18 + 1.19 +<body onload="boom();" style="-moz-column-count: 2; width: 100px;"> 1.20 +<div>m</div> 1.21 +<div id="a" style="-moz-column-count: 2;"> 1.22 +m 1.23 +<br style="float: left;"> 1.24 +m 1.25 +<span style="float: left;">m</span> 1.26 + 1.27 +<div style="float: left; -moz-column-width: 9999999999px;"></div> 1.28 +</div> 1.29 +</body> 1.30 +</html>