From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- .../navigation-history-entry/after-detach.html | 30 ++++++ .../navigation-history-entry/current-basic.html | 107 +++++++++++++++++++++ .../entries-across-origins.html | 33 +++++++ .../entries-after-bfcache-in-iframe.html | 36 +++++++ .../entries-after-bfcache.html | 60 ++++++++++++ ...s-after-blank-navigation-from-cross-origin.html | 22 +++++ .../entries-after-blank-navigation.html | 25 +++++ .../entries-after-blob-navigation.html | 25 +++++ ...tries-after-cross-document-forward-pruning.html | 33 +++++++ .../entries-after-javascript-url-navigation.html | 38 ++++++++ ...ries-after-navigations-in-multiple-windows.html | 34 +++++++ .../entries-after-srcdoc-navigation.html | 25 +++++ .../entries-array-equality.html | 8 ++ .../entries-in-new-javascript-url-iframe.html | 15 +++ .../entries-in-new-srcdoc-iframe.html | 15 +++ .../entries-when-inactive.html | 16 +++ .../entry-after-detach.html | 20 ++++ .../index-not-in-entries.html | 24 +++++ .../key-id-back-cross-document.html | 15 +++ .../key-id-back-same-document.html | 24 +++++ .../key-id-location-reload-intercept.html | 23 +++++ .../key-id-location-reload.html | 18 ++++ .../key-id-location-replace-cross-origin.html | 17 ++++ .../key-id-location-replace.html | 18 ++++ .../no-referrer-dynamic-url-censored.html | 33 +++++++ .../no-referrer-from-meta-url-censored.html | 32 ++++++ .../no-referrer-url-censored.html | 32 ++++++ .../opaque-origin-data-url.html | 17 ++++ .../navigation-history-entry/opaque-origin.html | 9 ++ .../navigation-history-entry/resources/is_uuid.js | 3 + .../key-navigate-back-cross-document-helper.html | 27 ++++++ .../resources/no-referrer-meta.html | 2 + .../resources/no-referrer.html | 1 + .../resources/no-referrer.html.headers | 1 + .../resources/opaque-origin-page.html | 25 +++++ .../resources/post-entries-length-to-top.html | 7 ++ .../resources/post-key-to-top.html | 3 + .../sameDocument-after-fragment-navigate.html | 30 ++++++ .../sameDocument-after-navigate-restore.html | 25 +++++ .../sameDocument-after-navigate.html | 14 +++ .../state-after-navigate-restore.html | 27 ++++++ 41 files changed, 969 insertions(+) create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/after-detach.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/current-basic.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/entries-across-origins.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-bfcache-in-iframe.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-bfcache.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-blank-navigation-from-cross-origin.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-blank-navigation.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-blob-navigation.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-cross-document-forward-pruning.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-javascript-url-navigation.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-navigations-in-multiple-windows.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-srcdoc-navigation.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/entries-array-equality.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/entries-in-new-javascript-url-iframe.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/entries-in-new-srcdoc-iframe.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/entries-when-inactive.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/entry-after-detach.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/index-not-in-entries.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/key-id-back-cross-document.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/key-id-back-same-document.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/key-id-location-reload-intercept.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/key-id-location-reload.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/key-id-location-replace-cross-origin.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/key-id-location-replace.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/no-referrer-dynamic-url-censored.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/no-referrer-from-meta-url-censored.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/no-referrer-url-censored.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/opaque-origin-data-url.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/opaque-origin.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/resources/is_uuid.js create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/resources/key-navigate-back-cross-document-helper.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/resources/no-referrer-meta.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/resources/no-referrer.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/resources/no-referrer.html.headers create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/resources/opaque-origin-page.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/resources/post-entries-length-to-top.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/resources/post-key-to-top.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/sameDocument-after-fragment-navigate.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/sameDocument-after-navigate-restore.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/sameDocument-after-navigate.html create mode 100644 testing/web-platform/tests/navigation-api/navigation-history-entry/state-after-navigate-restore.html (limited to 'testing/web-platform/tests/navigation-api/navigation-history-entry') diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/after-detach.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/after-detach.html new file mode 100644 index 0000000000..c4ecfec44d --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/after-detach.html @@ -0,0 +1,30 @@ + + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/current-basic.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/current-basic.html new file mode 100644 index 0000000000..78bbbb0560 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/current-basic.html @@ -0,0 +1,107 @@ + + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-across-origins.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-across-origins.html new file mode 100644 index 0000000000..447273bff2 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-across-origins.html @@ -0,0 +1,33 @@ + + + + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-bfcache-in-iframe.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-bfcache-in-iframe.html new file mode 100644 index 0000000000..b54a749950 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-bfcache-in-iframe.html @@ -0,0 +1,36 @@ + + + + + + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-bfcache.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-bfcache.html new file mode 100644 index 0000000000..ef93d1e27e --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-bfcache.html @@ -0,0 +1,60 @@ + + + + + + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-blank-navigation-from-cross-origin.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-blank-navigation-from-cross-origin.html new file mode 100644 index 0000000000..d527637ed3 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-blank-navigation-from-cross-origin.html @@ -0,0 +1,22 @@ + + + + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-blank-navigation.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-blank-navigation.html new file mode 100644 index 0000000000..f54ae06e14 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-blank-navigation.html @@ -0,0 +1,25 @@ + + + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-blob-navigation.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-blob-navigation.html new file mode 100644 index 0000000000..67611f4d44 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-blob-navigation.html @@ -0,0 +1,25 @@ + + + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-cross-document-forward-pruning.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-cross-document-forward-pruning.html new file mode 100644 index 0000000000..ddd1ad571d --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-cross-document-forward-pruning.html @@ -0,0 +1,33 @@ + + + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-javascript-url-navigation.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-javascript-url-navigation.html new file mode 100644 index 0000000000..c5ef7f33e4 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-javascript-url-navigation.html @@ -0,0 +1,38 @@ + + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-navigations-in-multiple-windows.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-navigations-in-multiple-windows.html new file mode 100644 index 0000000000..d1d4d86eb3 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-navigations-in-multiple-windows.html @@ -0,0 +1,34 @@ + + + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-srcdoc-navigation.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-srcdoc-navigation.html new file mode 100644 index 0000000000..b80e8aa0e2 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-srcdoc-navigation.html @@ -0,0 +1,25 @@ + + + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-array-equality.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-array-equality.html new file mode 100644 index 0000000000..98efb6b20c --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-array-equality.html @@ -0,0 +1,8 @@ + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-in-new-javascript-url-iframe.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-in-new-javascript-url-iframe.html new file mode 100644 index 0000000000..6f217f5e3c --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-in-new-javascript-url-iframe.html @@ -0,0 +1,15 @@ + + + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-in-new-srcdoc-iframe.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-in-new-srcdoc-iframe.html new file mode 100644 index 0000000000..a7e0f88d37 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-in-new-srcdoc-iframe.html @@ -0,0 +1,15 @@ + + + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-when-inactive.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-when-inactive.html new file mode 100644 index 0000000000..c70b6d8bf8 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-when-inactive.html @@ -0,0 +1,16 @@ + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/entry-after-detach.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/entry-after-detach.html new file mode 100644 index 0000000000..69c52d1409 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/entry-after-detach.html @@ -0,0 +1,20 @@ + + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/index-not-in-entries.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/index-not-in-entries.html new file mode 100644 index 0000000000..a16d130ba1 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/index-not-in-entries.html @@ -0,0 +1,24 @@ + + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/key-id-back-cross-document.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/key-id-back-cross-document.html new file mode 100644 index 0000000000..2dd58c03e9 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/key-id-back-cross-document.html @@ -0,0 +1,15 @@ + + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/key-id-back-same-document.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/key-id-back-same-document.html new file mode 100644 index 0000000000..858b5fd2c8 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/key-id-back-same-document.html @@ -0,0 +1,24 @@ + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/key-id-location-reload-intercept.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/key-id-location-reload-intercept.html new file mode 100644 index 0000000000..62ce097439 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/key-id-location-reload-intercept.html @@ -0,0 +1,23 @@ + + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/key-id-location-reload.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/key-id-location-reload.html new file mode 100644 index 0000000000..f950e2f3a2 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/key-id-location-reload.html @@ -0,0 +1,18 @@ + + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/key-id-location-replace-cross-origin.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/key-id-location-replace-cross-origin.html new file mode 100644 index 0000000000..65aff4a3ab --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/key-id-location-replace-cross-origin.html @@ -0,0 +1,17 @@ + + + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/key-id-location-replace.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/key-id-location-replace.html new file mode 100644 index 0000000000..a58772a7f4 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/key-id-location-replace.html @@ -0,0 +1,18 @@ + + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/no-referrer-dynamic-url-censored.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/no-referrer-dynamic-url-censored.html new file mode 100644 index 0000000000..7a5544c419 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/no-referrer-dynamic-url-censored.html @@ -0,0 +1,33 @@ + + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/no-referrer-from-meta-url-censored.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/no-referrer-from-meta-url-censored.html new file mode 100644 index 0000000000..fc563f509e --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/no-referrer-from-meta-url-censored.html @@ -0,0 +1,32 @@ + + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/no-referrer-url-censored.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/no-referrer-url-censored.html new file mode 100644 index 0000000000..e7eb1afc7d --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/no-referrer-url-censored.html @@ -0,0 +1,32 @@ + + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/opaque-origin-data-url.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/opaque-origin-data-url.html new file mode 100644 index 0000000000..65123fa60b --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/opaque-origin-data-url.html @@ -0,0 +1,17 @@ + + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/opaque-origin.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/opaque-origin.html new file mode 100644 index 0000000000..898ca27e4f --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/opaque-origin.html @@ -0,0 +1,9 @@ + + + + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/resources/is_uuid.js b/testing/web-platform/tests/navigation-api/navigation-history-entry/resources/is_uuid.js new file mode 100644 index 0000000000..3b855c01b0 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/resources/is_uuid.js @@ -0,0 +1,3 @@ +function isUUID(key) { + return /[a-f0-9]{8}-[a-f0-9]{4}-4[a-f0-9]{3}-[89aAbB][a-f0-9]{3}-[a-f0-9]{12}/.test(key); +} diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/resources/key-navigate-back-cross-document-helper.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/resources/key-navigate-back-cross-document-helper.html new file mode 100644 index 0000000000..79f3c3da0a --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/resources/key-navigate-back-cross-document-helper.html @@ -0,0 +1,27 @@ + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/resources/no-referrer-meta.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/resources/no-referrer-meta.html new file mode 100644 index 0000000000..bd5ec391cc --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/resources/no-referrer-meta.html @@ -0,0 +1,2 @@ + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/resources/no-referrer.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/resources/no-referrer.html new file mode 100644 index 0000000000..c8b7661f42 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/resources/no-referrer.html @@ -0,0 +1 @@ + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/resources/no-referrer.html.headers b/testing/web-platform/tests/navigation-api/navigation-history-entry/resources/no-referrer.html.headers new file mode 100644 index 0000000000..7ffbf17d6b --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/resources/no-referrer.html.headers @@ -0,0 +1 @@ +Referrer-Policy: no-referrer diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/resources/opaque-origin-page.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/resources/opaque-origin-page.html new file mode 100644 index 0000000000..98e2c1b317 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/resources/opaque-origin-page.html @@ -0,0 +1,25 @@ + + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/resources/post-entries-length-to-top.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/resources/post-entries-length-to-top.html new file mode 100644 index 0000000000..c8fe005d8e --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/resources/post-entries-length-to-top.html @@ -0,0 +1,7 @@ + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/resources/post-key-to-top.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/resources/post-key-to-top.html new file mode 100644 index 0000000000..285f345dc1 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/resources/post-key-to-top.html @@ -0,0 +1,3 @@ + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/sameDocument-after-fragment-navigate.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/sameDocument-after-fragment-navigate.html new file mode 100644 index 0000000000..a197f825d8 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/sameDocument-after-fragment-navigate.html @@ -0,0 +1,30 @@ + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/sameDocument-after-navigate-restore.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/sameDocument-after-navigate-restore.html new file mode 100644 index 0000000000..fd21bc222f --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/sameDocument-after-navigate-restore.html @@ -0,0 +1,25 @@ + + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/sameDocument-after-navigate.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/sameDocument-after-navigate.html new file mode 100644 index 0000000000..bfcb7c6599 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/sameDocument-after-navigate.html @@ -0,0 +1,14 @@ + + + + + diff --git a/testing/web-platform/tests/navigation-api/navigation-history-entry/state-after-navigate-restore.html b/testing/web-platform/tests/navigation-api/navigation-history-entry/state-after-navigate-restore.html new file mode 100644 index 0000000000..097b1d5079 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-history-entry/state-after-navigate-restore.html @@ -0,0 +1,27 @@ + + + + + -- cgit v1.2.3