summaryrefslogtreecommitdiffstats
path: root/dom/xul/crashtests/326881-1.xul
blob: 021da398a7d0df05e3c5530a83e6e9b24dcb6917 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?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 init() { 
  var n1 = document.getElementsByTagName("textbox")[0];
  n1.cloneNode(false);
}

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

</script>

<textbox/>

</window>