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