1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/generic/crashtests/406902-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,47 @@ 1.4 +<!DOCTYPE html> 1.5 +<html> 1.6 +<head> 1.7 + 1.8 +<style type="text/css"> 1.9 + 1.10 + .container { 1.11 + position: relative; 1.12 + } 1.13 + #colset { 1.14 + -moz-column-count: 3; 1.15 + -moz-column-gap: 0; 1.16 + border: silver 2pt; 1.17 + border-style: none solid; 1.18 + } 1.19 + .b1 { 1.20 + position: absolute; 1.21 + height: 336pt; 1.22 + margin-left: 20pt; 1.23 + } 1.24 + .b2 { 1.25 + position: absolute; 1.26 + height: 192pt; 1.27 + width: 25pt; 1.28 + margin-left: 50pt; 1.29 + } 1.30 + 1.31 +</style> 1.32 + 1.33 +<script type="text/javascript"> 1.34 + 1.35 +function boom() 1.36 +{ 1.37 + newDiv = document.createElementNS("http://www.w3.org/1999/xhtml", "div"); 1.38 + newDiv.setAttribute("class", "b1"); 1.39 + document.getElementById("f").appendChild(newDiv); 1.40 +} 1.41 + 1.42 +</script> 1.43 +</head> 1.44 + 1.45 +<body onload="boom();"> 1.46 + 1.47 +<div id="colset"><div class="container"><div class="b2"></div><div id="f"></div></div></div> 1.48 + 1.49 +</body> 1.50 +</html>