Bug 1867190 - Initialise the PHC allocate delay later r=glandium
[gecko.git] / layout / xul / test / test_bug386386.html
blobd3187c9142c5ee0c30406631476e035973fd9b41
1 <html>
2 <head><title>Testcase for bug 386386</title>
3 <!--
4 https://bugzilla.mozilla.org/show_bug.cgi?id=386386
5 -->
6 <script src="/tests/SimpleTest/SimpleTest.js"></script>
7 </head>
8 <body>
10 <iframe id="test386386" src="file_bug386386.sjs"></iframe>
12 <script class="testbody" type="application/javascript">
14 function boom()
16 var XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
17 var doc = document.getElementById("test386386").contentDocument;
18 var observes = doc.createElementNS(XUL_NS, 'observes');
19 doc.removeChild(doc.documentElement);
20 doc.appendChild(observes);
21 is(0, 0, "Test is successful if we get here without crashing");
22 SimpleTest.finish();
25 function do_test() {
26 setTimeout(boom, 200);
28 SimpleTest.waitForExplicitFinish();
29 SimpleTest.requestFlakyTimeout("untriaged");
30 addLoadEvent(do_test);
31 </script>
33 </body>
34 </html>