tenfourfox/dom/base/crashtests/327694.html

18 lines
296 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<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>