1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/generic/crashtests/404146-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,28 @@ 1.4 +<html> 1.5 +<head> 1.6 +<style> 1.7 + 1.8 +.colset { 1.9 + -moz-column-count: 2; 1.10 + -moz-column-width: 50px; 1.11 + float: left; 1.12 + border: 2px solid black; 1.13 + height: 10em; 1.14 + font: 12px monospace; 1.15 +} 1.16 + 1.17 +#t { 1.18 + display: inline-block; 1.19 + background: lightgreen; 1.20 + height: 7em; 1.21 + width: 29px; 1.22 +} 1.23 + 1.24 +</style> 1.25 +</head> 1.26 + 1.27 +<body onload="document.getElementById('t').style.width = '30px';"> 1.28 + 1.29 +<div class="colset">The quick <span><div id="t"></div>brown</span></div> 1.30 + 1.31 +</body></html>