https://github.com/mozilla/gecko-dev
Raw File
Tip revision: ba36715b3b9584b7746306c7709f0530c6f643a5 authored by ffxbld on 06 September 2018, 06:31:42 UTC
No bug, Automated blocklist update from host bld-linux64-spot-302 - a=blocklist-update
Tip revision: ba36715
330925-1.xhtml
<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">

<head>

<script>

function init()
{
  var foopy = document.getElementById("foopy");
  var emb = document.getElementById("emb");

  try {  
    foopy.appendChild(SpecialPowers.unwrap(SpecialPowers.wrap(document).getAnonymousNodes(emb))[0]);
    emb.parentNode.removeChild(emb);
    foopy.parentNode.removeChild(foopy);
  } catch (e) {
  }
  
  document.documentElement.removeAttribute("class");
}


window.addEventListener("load", function() { setTimeout(init, 30); }, false);

</script>

</head>
<body> 

<div id="foopy"/>

<embed src="data:foo/bar,baz" id="emb" />

</body>
</html>
back to top