blob: d2e2250e0d0ea057fe65eab50c61dbf3a8f8cb2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<head>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=394800
-->
<title>Test Mozilla bug 394800</title>
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<script class="testbody" type="application/javascript">
function do_test()
{
var x = document.getElementById("x");
x.parentNode.removeChild(x);
is(0, 0, "this is a crash/assertion test, so we're ok if we survived this far");
SimpleTest.finish();
}
SimpleTest.waitForExplicitFinish();
</script>
</head>
<body>
<xul:menulist><xul:tooltip/><div><span><xul:hbox id="x"/></span></div></xul:menulist>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=394800">Mozilla Bug 394800</a>
<p id="display"></p>
<pre id="test">
</pre>
<script>
addLoadEvent(do_test);
</script>
</body>
</html>
|