1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/generic/crashtests/393956-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,25 @@ 1.4 +<html> 1.5 +<head> 1.6 +<style> 1.7 +body { 1.8 + -moz-column-count: 2; 1.9 +} 1.10 +#x { 1.11 + height: 20px; 1.12 +} 1.13 +#y { 1.14 + height: 80px; 1.15 +} 1.16 +</style> 1.17 + 1.18 +<script> 1.19 +function boom() 1.20 +{ 1.21 + document.getElementById("x").style.content = "'0'"; 1.22 +} 1.23 +</script> 1.24 +</head> 1.25 + 1.26 +<body onload="boom();"><div id="x"><div id="y"></div></div></body> 1.27 + 1.28 +</html>