haikuwebkit/LayoutTests/fast/parser/document-open-in-unload.html

11 lines
212 B
HTML

This test passes if it doesn't crash.
<iframe src="data:text/plain,Hi"></iframe>
<script>
if (window.testRunner)
testRunner.dumpAsText();
frames[0].onunload = function () {
document.open();
};
</script>