no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / layout / reftests / bugs / 421239-1.html
blobd9cc8b5b48184c37e17f0b46b27bd4bfa1f21a7d
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()
10 var a = document.getElementById("a");
11 a.firstChild.remove();
12 document.documentElement.className = "";
14 </script>
15 </head>
16 <body onload="boom();">
17 <div id="a">a</div>
18 <div>b</div>
19 </body>
20 </html>