summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/navigation-api/navigation-methods/reload-info.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
commit6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch)
treea68f146d7fa01f0134297619fbe7e33db084e0aa /testing/web-platform/tests/navigation-api/navigation-methods/reload-info.html
parentInitial commit. (diff)
downloadthunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz
thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/navigation-api/navigation-methods/reload-info.html')
-rw-r--r--testing/web-platform/tests/navigation-api/navigation-methods/reload-info.html47
1 files changed, 47 insertions, 0 deletions
diff --git a/testing/web-platform/tests/navigation-api/navigation-methods/reload-info.html b/testing/web-platform/tests/navigation-api/navigation-methods/reload-info.html
new file mode 100644
index 0000000000..637f6976ad
--- /dev/null
+++ b/testing/web-platform/tests/navigation-api/navigation-methods/reload-info.html
@@ -0,0 +1,47 @@
+<!doctype html>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<iframe id="i" src="/common/blank.html"></iframe>
+<script>
+async_test(t => {
+ window.onload = t.step_func(() => {
+ const navState = { key: "value" };
+ const navInfo = { infoKey: "infoValue" };
+ i.contentWindow.navigation.navigate("#1", { state: navState }).committed.then(t.step_func(() => {
+ // Make sure that state setting worked
+ assert_equals(i.contentWindow.navigation.currentEntry.getState().key, "value");
+ assert_not_equals(i.contentWindow.navigation.currentEntry.getState(), navState);
+
+ let start_url = i.contentWindow.location.href;
+ let start_key = i.contentWindow.navigation.currentEntry.key;
+ let start_id = i.contentWindow.navigation.currentEntry.id;
+ let start_state = i.contentWindow.navigation.currentEntry.getState();
+ let onnavigate_called = false;
+ let promise_settled = false;
+ i.contentWindow.navigation.onnavigate = t.step_func(e => {
+ onnavigate_called = true;
+ assert_equals(e.info, navInfo);
+ assert_equals(e.navigationType, "reload");
+ assert_equals(e.destination.getState().key, "value");
+ assert_not_equals(e.destination.getState(), start_state);
+ });
+ i.contentWindow.navigation.reload({ info: navInfo }).committed.finally(() => {
+ promise_settled = true;
+ });
+ i.onload = t.step_func(() => {
+ assert_true(onnavigate_called);
+ assert_equals(i.contentWindow.location.href, start_url);
+ assert_equals(i.contentWindow.navigation.currentEntry.key, start_key);
+ assert_equals(i.contentWindow.navigation.currentEntry.id, start_id);
+ assert_equals(i.contentWindow.navigation.currentEntry.getState().key, "value");
+ assert_not_equals(i.contentWindow.navigation.currentEntry.getState(), start_state);
+ assert_equals(i.contentWindow.navigation.entries().length, 2);
+
+ t.step_timeout(t.step_func_done(() => {
+ assert_equals(promise_settled, false);
+ }), 0);
+ });
+ }));
+ });
+}, "reload() variant with only info");
+</script>