Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
1 <!DOCTYPE html>
2 <html class="reftest-wait">
3 <head>
4 <style>
5 div#a { margin: 100px 0px 100px 0px; }
6 </style>
7 <script>
8 function boom()
9 {
10 var a = document.getElementById("a");
11 a.removeChild(a.firstChild);
12 document.documentElement.className = "";
13 }
14 </script>
15 </head>
16 <body onload="boom();">
17 <div id="a">a</div>
18 <div>b</div>
19 </body>
20 </html>