haikuwebkit/LayoutTests/fast/loader/resources/ping-error-window.html

12 lines
261 B
HTML

<body onload="window.close()">
<iframe src="ping-error-frame.html"></iframe>
<script>
function frameUnloaded()
{
var img = document.createElement("img");
img.src = 'does-not-exist.jpg';
document.body.appendChild(img);
opener.done();
}
</script>