| New window with beforeUnload handler.<br> |
| You should see "beforeUnload" in the console log if you try to close the window.<br> |
| <iframe src="resources/onbeforeunload-focused-iframe-frame.html" id="focusedFrame" name="focusedFrame"></iframe> |
| testRunner.dumpChildFramesAsText(); |
| testRunner.waitUntilDone(); |
| window.onbeforeunload = beforeUnload; |
| console.log("beforeUnload"); |
| window.onbeforeunload = null; |
| function simulateCloseWindow() |
| // Simulate an attempt to close the window |
| if (!testRunner.callShouldCloseOnWebView()) |
| alert("Should have run the beforeUnload handler."); |