summaryrefslogtreecommitdiffstats
path: root/layout/xul/test/test_bug394800.xhtml
blob: 26fc50f771dede36cafc3a0e109dcbe249c1b83d (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 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>