https://github.com/mozilla/gecko-dev
Raw File
Tip revision: a9eb4e9575f016d322653eff4ce5a5dcab7499c9 authored by Ryan VanderMeulen on 10 August 2015, 18:38:10 UTC
Merge mozilla-b2g37 to 2.2r. a=merge
Tip revision: a9eb4e9
327694.html
<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>
back to top