test_bug386386.html 995 B

1234567891011121314151617181920212223242526272829303132333435
  1. <html>
  2. <head><title>Testcase for bug 386386</title>
  3. <!--
  4. https://bugzilla.mozilla.org/show_bug.cgi?id=386386
  5. -->
  6. <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  7. </head>
  8. <body>
  9. <iframe id="test386386" src="data:application/vnd.mozilla.xul+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%3F%3E%0A%3Cwindow%3E%3C/window%3E"></iframe>
  10. <script class="testbody" type="application/javascript">
  11. function boom()
  12. {
  13. var XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
  14. var doc = document.getElementById("test386386").contentDocument;
  15. var observes = doc.createElementNS(XUL_NS, 'observes');
  16. doc.removeChild(doc.documentElement);
  17. doc.appendChild(observes);
  18. is(0, 0, "Test is successful if we get here without crashing");
  19. SimpleTest.finish();
  20. }
  21. function do_test() {
  22. setTimeout(boom, 200);
  23. }
  24. SimpleTest.waitForExplicitFinish();
  25. SimpleTest.requestFlakyTimeout("untriaged");
  26. addLoadEvent(do_test);
  27. </script>
  28. </body>
  29. </html>