Bumping manifests a=b2g-bump
[gecko.git] / layout / reftests / bugs / 389636-1.html
blobe3ab2cabefe9ae1ba0cf30f67702b5942c16fdf4
1 <!DOCTYPE html>
2 <html class="reftest-wait">
3 <head>
4 <script>
5 function finishTest()
7 document.documentElement.className = "";
10 function boom()
12 var HTML_NS = "http://www.w3.org/1999/xhtml";
13 var XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
15 var clonedRichListBox = document.createElementNS(XUL_NS, 'richlistbox').cloneNode(false);
16 var div = document.createElementNS(HTML_NS, "div");
18 div.appendChild(clonedRichListBox);
20 document.body.appendChild(clonedRichListBox);
22 setTimeout(finishTest, 100);
25 </script>
27 </head>
28 <body onload="setTimeout(boom, 100);" style="visibility: hidden">
30 </body>
31 </html>