blob: d6015707bd62f036e5bfd402e69db333e3a3d74b (
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
|
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" onload="setTimeout(boom, 30);" class="reftest-wait">
<script>
function remove(q1) { q1.parentNode.removeChild(q1); }
function boom()
{
var x = document.getElementById("x");
var y = document.getElementById("y");
remove(x);
remove(y);
document.documentElement.removeAttribute("class");
}
</script>
<tree>
<treechildren id="y"/>
<richlistbox>
<hbox id="x"/>
<menulist/>
</richlistbox>
</tree>
</window>
|