1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/bugs/418766-1a.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,16 @@ 1.4 +<html class="reftest-wait"> 1.5 +<head> 1.6 +<script> 1.7 +function boom() 1.8 +{ 1.9 + var n = document.getElementById("editMe"); 1.10 + n.removeChild(n.firstChild); 1.11 + document.documentElement.className = ""; 1.12 +} 1.13 +</script> 1.14 +</head> 1.15 +<body onload="boom();"> 1.16 + <span id="editMe" style="margin-bottom: 1px;">a</span> 1.17 + <div>b</div> 1.18 +</body> 1.19 +</html>