1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/forms/crashtests/388374-2.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,25 @@ 1.4 +<html xmlns="http://www.w3.org/1999/xhtml"> 1.5 +<head> 1.6 +<script> 1.7 +function boom() 1.8 +{ 1.9 + var newDiv = document.createElementNS("http://www.w3.org/1999/xhtml", "div"); 1.10 + newDiv.style.width = "100px"; 1.11 + newDiv.style.height = "8px"; 1.12 + newDiv.style.background = "lightgreen"; 1.13 + document.getElementById("tr").appendChild(newDiv); 1.14 +} 1.15 +</script> 1.16 +</head> 1.17 + 1.18 +<body onload="boom()"> 1.19 + 1.20 +<table border="1"> 1.21 + <tr id="tr"> 1.22 + <td></td> 1.23 + <td style="padding-left: 10%"><select style="padding-left: 20%; bottom: 10%;"><option style="padding: 0 0 10% 20%; width: 25px;"></option></select></td> 1.24 + </tr> 1.25 +</table> 1.26 + 1.27 +</body> 1.28 +</html>