blob: 8d1785f11c80dd7a094d8144ba5e32c837e935bb [file] [log] [blame]
<html>
<head>
<title>Remove frame on load of about:blank</title>
<script>
var f;
window.addEventListener('load', function() {
f = document.querySelector('iframe')
f.onload = function() {
if (f.contentWindow.location.href == 'about:blank')
f.parentNode.removeChild(f);
};
});
</script>
</head>
<body>
<p>Navigate the frame to about:blank page to cause it to be removed.</p>
<iframe src="/cross-site/b.com/title2.html"></iframe>
</body>
</html>