https://github.com/mozilla/gecko-dev
Raw File
Tip revision: f85379482fadc58774476d377636fb8423edc6ac authored by Kim Moir on 15 May 2017, 13:57:26 UTC
Bug 1358976 - Stop automatic triggers of nightly builds on mozilla-aurora r=dustin DONTBUILD a=test-only CLOSED TREE
Tip revision: f853794
666869.html
<!DOCTYPE html>
<html>
<head>
<script>

function boom()
{
  var f = document.getElementById("f");
  var frameWin = f.contentWindow;
  document.body.removeChild(f);
  frameWin.performance;
}

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