From 43a97878ce14b72f0981164f87f2e35e14151312 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 11:22:09 +0200 Subject: Adding upstream version 110.0.1. Signed-off-by: Daniel Baumann --- .../currententrychange-event/anchor-click.html | 18 ++++++++++ .../currententrychange-event/constructor.html | 32 +++++++++++++++++ .../history-back-same-doc.html | 24 +++++++++++++ .../history-pushState.html | 16 +++++++++ .../history-replaceState.html | 18 ++++++++++ .../currententrychange-event/location-api.html | 18 ++++++++++ ...te-from-initial-about-blank-same-doc-popup.html | 15 ++++++++ ...navigate-from-initial-about-blank-same-doc.html | 12 +++++++ .../navigate-from-initial-about-blank.html | 11 ++++++ .../navigation-back-forward-cross-doc.html | 20 +++++++++++ .../navigation-back-forward-same-doc.html | 40 ++++++++++++++++++++++ .../navigation-navigate-cross-doc.html | 12 +++++++ .../navigation-navigate-intercept.html | 21 ++++++++++++ .../navigation-navigate-preventDefault.html | 10 ++++++ .../navigation-navigate-replace-cross-doc.html | 12 +++++++ .../navigation-navigate-replace-intercept.html | 23 +++++++++++++ .../navigation-navigate-replace-same-doc.html | 23 +++++++++++++ .../navigation-navigate-same-doc.html | 21 ++++++++++++ .../navigation-reload-cross-doc.html | 12 +++++++ .../navigation-reload-intercept.html | 21 ++++++++++++ .../navigation-updateCurrentEntry.html | 20 +++++++++++ .../currententrychange-event/not-on-load.html | 17 +++++++++ .../currententrychange-event/properties.html | 14 ++++++++ 23 files changed, 430 insertions(+) create mode 100644 testing/web-platform/tests/navigation-api/currententrychange-event/anchor-click.html create mode 100644 testing/web-platform/tests/navigation-api/currententrychange-event/constructor.html create mode 100644 testing/web-platform/tests/navigation-api/currententrychange-event/history-back-same-doc.html create mode 100644 testing/web-platform/tests/navigation-api/currententrychange-event/history-pushState.html create mode 100644 testing/web-platform/tests/navigation-api/currententrychange-event/history-replaceState.html create mode 100644 testing/web-platform/tests/navigation-api/currententrychange-event/location-api.html create mode 100644 testing/web-platform/tests/navigation-api/currententrychange-event/navigate-from-initial-about-blank-same-doc-popup.html create mode 100644 testing/web-platform/tests/navigation-api/currententrychange-event/navigate-from-initial-about-blank-same-doc.html create mode 100644 testing/web-platform/tests/navigation-api/currententrychange-event/navigate-from-initial-about-blank.html create mode 100644 testing/web-platform/tests/navigation-api/currententrychange-event/navigation-back-forward-cross-doc.html create mode 100644 testing/web-platform/tests/navigation-api/currententrychange-event/navigation-back-forward-same-doc.html create mode 100644 testing/web-platform/tests/navigation-api/currententrychange-event/navigation-navigate-cross-doc.html create mode 100644 testing/web-platform/tests/navigation-api/currententrychange-event/navigation-navigate-intercept.html create mode 100644 testing/web-platform/tests/navigation-api/currententrychange-event/navigation-navigate-preventDefault.html create mode 100644 testing/web-platform/tests/navigation-api/currententrychange-event/navigation-navigate-replace-cross-doc.html create mode 100644 testing/web-platform/tests/navigation-api/currententrychange-event/navigation-navigate-replace-intercept.html create mode 100644 testing/web-platform/tests/navigation-api/currententrychange-event/navigation-navigate-replace-same-doc.html create mode 100644 testing/web-platform/tests/navigation-api/currententrychange-event/navigation-navigate-same-doc.html create mode 100644 testing/web-platform/tests/navigation-api/currententrychange-event/navigation-reload-cross-doc.html create mode 100644 testing/web-platform/tests/navigation-api/currententrychange-event/navigation-reload-intercept.html create mode 100644 testing/web-platform/tests/navigation-api/currententrychange-event/navigation-updateCurrentEntry.html create mode 100644 testing/web-platform/tests/navigation-api/currententrychange-event/not-on-load.html create mode 100644 testing/web-platform/tests/navigation-api/currententrychange-event/properties.html (limited to 'testing/web-platform/tests/navigation-api/currententrychange-event') diff --git a/testing/web-platform/tests/navigation-api/currententrychange-event/anchor-click.html b/testing/web-platform/tests/navigation-api/currententrychange-event/anchor-click.html new file mode 100644 index 0000000000..e0bf91166a --- /dev/null +++ b/testing/web-platform/tests/navigation-api/currententrychange-event/anchor-click.html @@ -0,0 +1,18 @@ + + + + + diff --git a/testing/web-platform/tests/navigation-api/currententrychange-event/constructor.html b/testing/web-platform/tests/navigation-api/currententrychange-event/constructor.html new file mode 100644 index 0000000000..b09e68e1c7 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/currententrychange-event/constructor.html @@ -0,0 +1,32 @@ + + + + diff --git a/testing/web-platform/tests/navigation-api/currententrychange-event/history-back-same-doc.html b/testing/web-platform/tests/navigation-api/currententrychange-event/history-back-same-doc.html new file mode 100644 index 0000000000..768805b752 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/currententrychange-event/history-back-same-doc.html @@ -0,0 +1,24 @@ + + + + diff --git a/testing/web-platform/tests/navigation-api/currententrychange-event/history-pushState.html b/testing/web-platform/tests/navigation-api/currententrychange-event/history-pushState.html new file mode 100644 index 0000000000..1a17a7cec0 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/currententrychange-event/history-pushState.html @@ -0,0 +1,16 @@ + + + + diff --git a/testing/web-platform/tests/navigation-api/currententrychange-event/history-replaceState.html b/testing/web-platform/tests/navigation-api/currententrychange-event/history-replaceState.html new file mode 100644 index 0000000000..e8ae8ee57a --- /dev/null +++ b/testing/web-platform/tests/navigation-api/currententrychange-event/history-replaceState.html @@ -0,0 +1,18 @@ + + + + diff --git a/testing/web-platform/tests/navigation-api/currententrychange-event/location-api.html b/testing/web-platform/tests/navigation-api/currententrychange-event/location-api.html new file mode 100644 index 0000000000..88ebd985a1 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/currententrychange-event/location-api.html @@ -0,0 +1,18 @@ + + + + diff --git a/testing/web-platform/tests/navigation-api/currententrychange-event/navigate-from-initial-about-blank-same-doc-popup.html b/testing/web-platform/tests/navigation-api/currententrychange-event/navigate-from-initial-about-blank-same-doc-popup.html new file mode 100644 index 0000000000..2399fb2ef9 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/currententrychange-event/navigate-from-initial-about-blank-same-doc-popup.html @@ -0,0 +1,15 @@ + + + + diff --git a/testing/web-platform/tests/navigation-api/currententrychange-event/navigate-from-initial-about-blank-same-doc.html b/testing/web-platform/tests/navigation-api/currententrychange-event/navigate-from-initial-about-blank-same-doc.html new file mode 100644 index 0000000000..f0fa9cdf57 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/currententrychange-event/navigate-from-initial-about-blank-same-doc.html @@ -0,0 +1,12 @@ + + + + + diff --git a/testing/web-platform/tests/navigation-api/currententrychange-event/navigate-from-initial-about-blank.html b/testing/web-platform/tests/navigation-api/currententrychange-event/navigate-from-initial-about-blank.html new file mode 100644 index 0000000000..56eaa1af26 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/currententrychange-event/navigate-from-initial-about-blank.html @@ -0,0 +1,11 @@ + + + + + diff --git a/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-back-forward-cross-doc.html b/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-back-forward-cross-doc.html new file mode 100644 index 0000000000..7416caa94b --- /dev/null +++ b/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-back-forward-cross-doc.html @@ -0,0 +1,20 @@ + + + + + diff --git a/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-back-forward-same-doc.html b/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-back-forward-same-doc.html new file mode 100644 index 0000000000..8182673aa5 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-back-forward-same-doc.html @@ -0,0 +1,40 @@ + + + + diff --git a/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-navigate-cross-doc.html b/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-navigate-cross-doc.html new file mode 100644 index 0000000000..81a4e239ba --- /dev/null +++ b/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-navigate-cross-doc.html @@ -0,0 +1,12 @@ + + + + + diff --git a/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-navigate-intercept.html b/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-navigate-intercept.html new file mode 100644 index 0000000000..af0fe104f9 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-navigate-intercept.html @@ -0,0 +1,21 @@ + + + + + diff --git a/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-navigate-preventDefault.html b/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-navigate-preventDefault.html new file mode 100644 index 0000000000..34b98353ba --- /dev/null +++ b/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-navigate-preventDefault.html @@ -0,0 +1,10 @@ + + + + diff --git a/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-navigate-replace-cross-doc.html b/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-navigate-replace-cross-doc.html new file mode 100644 index 0000000000..ab762c04bc --- /dev/null +++ b/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-navigate-replace-cross-doc.html @@ -0,0 +1,12 @@ + + + + + diff --git a/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-navigate-replace-intercept.html b/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-navigate-replace-intercept.html new file mode 100644 index 0000000000..33209202d8 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-navigate-replace-intercept.html @@ -0,0 +1,23 @@ + + + + + diff --git a/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-navigate-replace-same-doc.html b/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-navigate-replace-same-doc.html new file mode 100644 index 0000000000..f993597305 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-navigate-replace-same-doc.html @@ -0,0 +1,23 @@ + + + + diff --git a/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-navigate-same-doc.html b/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-navigate-same-doc.html new file mode 100644 index 0000000000..87fc28d174 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-navigate-same-doc.html @@ -0,0 +1,21 @@ + + + + diff --git a/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-reload-cross-doc.html b/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-reload-cross-doc.html new file mode 100644 index 0000000000..e590cab382 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-reload-cross-doc.html @@ -0,0 +1,12 @@ + + + + + diff --git a/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-reload-intercept.html b/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-reload-intercept.html new file mode 100644 index 0000000000..275e23363c --- /dev/null +++ b/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-reload-intercept.html @@ -0,0 +1,21 @@ + + + + + diff --git a/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-updateCurrentEntry.html b/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-updateCurrentEntry.html new file mode 100644 index 0000000000..4423b2bc90 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/currententrychange-event/navigation-updateCurrentEntry.html @@ -0,0 +1,20 @@ + + + + diff --git a/testing/web-platform/tests/navigation-api/currententrychange-event/not-on-load.html b/testing/web-platform/tests/navigation-api/currententrychange-event/not-on-load.html new file mode 100644 index 0000000000..8cc1688913 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/currententrychange-event/not-on-load.html @@ -0,0 +1,17 @@ + + + + + + diff --git a/testing/web-platform/tests/navigation-api/currententrychange-event/properties.html b/testing/web-platform/tests/navigation-api/currententrychange-event/properties.html new file mode 100644 index 0000000000..e862543bcc --- /dev/null +++ b/testing/web-platform/tests/navigation-api/currententrychange-event/properties.html @@ -0,0 +1,14 @@ + + + + -- cgit v1.2.3