haikuwebkit/LayoutTests/fast/frames/resources/page-unload-document-open-f...

17 lines
269 B
HTML

<!DOCTYPE html>
<html>
<head>
<script>
function runTest()
{
parent.document.open();
parent.document.write('FAIL: document.open() has canceled the navigation');
parent.document.close();
}
</script>
</head>
<body onunload="runTest()">
<p>FAIL
</body>
</html>