summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/navigation-api/focus-reset/change-focus-back-to-origial-during-intercept.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/navigation-api/focus-reset/change-focus-back-to-origial-during-intercept.html')
-rw-r--r--testing/web-platform/tests/navigation-api/focus-reset/change-focus-back-to-origial-during-intercept.html36
1 files changed, 36 insertions, 0 deletions
diff --git a/testing/web-platform/tests/navigation-api/focus-reset/change-focus-back-to-origial-during-intercept.html b/testing/web-platform/tests/navigation-api/focus-reset/change-focus-back-to-origial-during-intercept.html
new file mode 100644
index 0000000000..4e5b9dfb6a
--- /dev/null
+++ b/testing/web-platform/tests/navigation-api/focus-reset/change-focus-back-to-origial-during-intercept.html
@@ -0,0 +1,36 @@
+<!doctype html>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<body>
+<script>
+promise_test(async t => {
+ let intercept_resolve;
+ navigation.addEventListener("navigate", e => {
+ e.intercept({ handler: () => new Promise(resolve => intercept_resolve = resolve),
+ focusReset: "after-transition" });
+ }, { once: true });
+
+ const button = document.body.appendChild(document.createElement("button"));
+ const button2 = document.body.appendChild(document.createElement("button"));
+ button2.tabIndex = 0;
+ t.add_cleanup(() => {
+ button.remove();
+ button2.remove();
+ });
+
+ assert_equals(document.activeElement, document.body, "Start on body");
+ button.focus();
+ assert_equals(document.activeElement, button, "focus() worked");
+
+ const finished = navigation.navigate("#1").finished;
+ button2.focus();
+ assert_equals(document.activeElement, button2, "focus() worked");
+ button.focus();
+ assert_equals(document.activeElement, button, "focus() worked");
+
+ intercept_resolve();
+ await finished;
+ assert_equals(document.activeElement, button, "Focus was not reset after the transition");
+}, "");
+</script>
+</body>