https://github.com/mozilla/gecko-dev
Raw File
Tip revision: ce2be64ebd35c2a0fe0fa8d45738cb6eef7dc2d7 authored by ffxbld on 28 December 2011, 13:05:54 UTC
Added tag FENNEC_10_0b2_BUILD1 for changeset 191bd18a2baf. CLOSED TREE a=release
Tip revision: ce2be64
603531.html
<!DOCTYPE html>
<html>
<head>
<script>

function boom()
{
  var frame = document.getElementById("f");
  var frameWindow = frame.contentWindow;
  document.body.removeChild(frame);
  document.body.setUserData("x", frameWindow, null);
  document.body.setUserData("x", "", null);
}

</script>
</head>
<body onload="boom();"><iframe id="f" src="data:text/html,"></iframe></body>
</html>
back to top