1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/forms/crashtests/367587-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,37 @@ 1.4 +<html class="reftest-wait"> 1.5 +<head> 1.6 + 1.7 +<style> 1.8 + 1.9 +#opt1 { display: table-footer-group; } 1.10 +#opt1 { visibility: collapse; } 1.11 +#opt1 { overflow: -moz-scrollbars-vertical; } 1.12 + 1.13 +#opt2 { display: table-cell; } 1.14 +#opt2 { clear: left; } 1.15 + 1.16 +select { width: 1px; } 1.17 + 1.18 +</style> 1.19 + 1.20 +<script> 1.21 + 1.22 +function boom() 1.23 +{ 1.24 + document.getElementById("opt2").style.clear = "none"; 1.25 + document.documentElement.removeAttribute("class"); 1.26 +} 1.27 + 1.28 +</script> 1.29 + 1.30 +</head> 1.31 + 1.32 +<body onload="setTimeout(boom, 30);"> 1.33 + 1.34 +<select multiple> 1.35 +<option id="opt1">A</option> 1.36 +<option id="opt2">B</option> 1.37 +</select> 1.38 + 1.39 +</body> 1.40 +</html>