summaryrefslogtreecommitdiffstats
path: root/dom/xul/templates/crashtests/329884-1.xul
blob: 8cc486e272fdbfb3b7dc3eb52e84691729fcb24a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
        
<script>

function rM(q1) { q1.parentNode.removeChild(q1); }

function init2()
{ 
  rM(document.getElementById("t"));
}

window.addEventListener("load", init2, false);

</script>

<foo id="t" datasources="1.rdf" />

</window>