layout/xul/test/test_bug386386.html

Wed, 31 Dec 2014 07:16:47 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:16:47 +0100
branch
TOR_BUG_9701
changeset 3
141e0f1194b1
permissions
-rw-r--r--

Revert simplistic fix pending revisit of Mozilla integration attempt.

     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>
    10 <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>
    12 <script class="testbody" type="application/javascript">
    14 function boom()
    15 {
    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();
    23 }
    25 function do_test() {
    26   setTimeout(boom, 200);
    27 }
    28 SimpleTest.waitForExplicitFinish();
    29 addLoadEvent(do_test);
    30 </script>
    32 </body>
    33 </html>

mercurial