1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/generic/crashtests/408883-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,39 @@ 1.4 +<html> 1.5 +<head> 1.6 + 1.7 +<style type="text/css"> 1.8 + 1.9 +body { 1.10 + -moz-column-count: 2; 1.11 + -moz-column-width: 100px; 1.12 + height: 200px; 1.13 + width: 400px; 1.14 +} 1.15 +.b { 1.16 + height: 300px; 1.17 +} 1.18 +.f { 1.19 + float: left; 1.20 +} 1.21 +.p { 1.22 + padding: 0pt 200px; 1.23 +} 1.24 + 1.25 +</style> 1.26 + 1.27 +<script type="text/javascript"> 1.28 + 1.29 +function boom() 1.30 +{ 1.31 + var newDiv = document.createElementNS("http://www.w3.org/1999/xhtml", "div"); 1.32 + var a = document.getElementById("a"); 1.33 + a.appendChild(newDiv); 1.34 +} 1.35 + 1.36 +</script> 1.37 + 1.38 +</head> 1.39 + 1.40 +<body onload="boom();"><div class="f"><span class="p"></span></div><div id="a"><div class="b f"><input></div></div></body> 1.41 + 1.42 +</html>