haikuwebkit/LayoutTests/fast/loader/resources/iframe-with-beforeunload.html

8 lines
153 B
HTML

<script>
window.onbeforeunload = function()
{
return "This is beforeunload from an iframe.";
}
</script>
This is an iframe with a beforeunload handler.