Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 1 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /html/browsers/browsing-the-web/unloading-documents/004.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>document.open in beforeunload with button</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
var t = async_test();
var win;
t.step(function() {
win = window.open("support/004-1.html");
});
add_completion_callback(function() {win.close()});
</script>