| Index: third_party/WebKit/LayoutTests/imported/wpt/html/browsers/history/the-history-interface/non-automated/traverse_the_history_unload_prompt_1-manual.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/html/browsers/history/the-history-interface/non-automated/traverse_the_history_unload_prompt_1-manual.html b/third_party/WebKit/LayoutTests/imported/wpt/html/browsers/history/the-history-interface/non-automated/traverse_the_history_unload_prompt_1-manual.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b1d0aed52c7587fe9a92a7ae02901d53aaf2cc48
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/imported/wpt/html/browsers/history/the-history-interface/non-automated/traverse_the_history_unload_prompt_1-manual.html
|
| @@ -0,0 +1,31 @@
|
| +<!doctype html>
|
| +<title>Traversing the history, prompt in before unload, navigation denied</title>
|
| +<script src="/resources/testharness.js"></script>
|
| +<script src="/resources/testharnessreport.js"></script>
|
| +<div id="log"></div>
|
| +<script>
|
| + setup({timeout:3600000});
|
| + var t = async_test(undefined, {timeout:3600000});
|
| + started = false;
|
| + pages = []
|
| + timer = null;
|
| + beforeunload_ran = false;
|
| + start_test_wait = t.step_func(
|
| + function() {
|
| + clearTimeout(timer);
|
| + timer = setTimeout(t.step_func(
|
| + function() {
|
| + try {
|
| + assert_true(beforeunload_ran, "beforeunload event handler ran");
|
| + assert_array_equals(pages, [2], "Pages opened during history navigation");
|
| + t.done();
|
| + } finally {
|
| + win.close();
|
| + }
|
| + }
|
| + ), 500);
|
| + }
|
| + );
|
| + t.step(function() {win = window.open("history_entry.html?urls=traverse_the_history_unload_prompt_1-1.html");
|
| +});
|
| +</script>
|
|
|