summaryrefslogtreecommitdiffstats
path: root/dom/base/crashtests/327694.html
blob: daff350faa36b796cbd4341b74906beaf736e310 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
<head>

<script>

function init()
{
  var y = document.getElementById("tt");
  var z = y.firstChild;
  y.removeChild(z);
  z.text;
}

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

</script>

</head>

<body>

<div id="tt"><a href="http://www.mozilla.org">Foo</a></div>

</body>
</html>