1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/forms/crashtests/370703-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,30 @@ 1.4 +<html class="reftest-wait"> 1.5 +<head> 1.6 +<script> 1.7 + 1.8 +function boom() 1.9 +{ 1.10 + document.getElementById("M").style.width = "6em"; 1.11 + document.documentElement.removeAttribute("class"); 1.12 +} 1.13 + 1.14 +</script> 1.15 + 1.16 +<body onload="setTimeout(boom, 30);"> 1.17 + 1.18 +<div style="position:absolute; top: 50px; left: 50px; border: 2px solid orange;"> 1.19 + 1.20 + <select> 1.21 + <option id="M">M</option> 1.22 + </select> 1.23 + 1.24 + <br> 1.25 + 1.26 + <select style="width: 200%"> 1.27 + <option style="visibility: collapse; overflow: auto; display: table-footer-group;">X</option> 1.28 + </select> 1.29 + 1.30 +</div> 1.31 + 1.32 +</body> 1.33 +</html>