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 --- .../cookies/samesite/about-blank-nested.https.html | 29 +++++++ .../samesite/about-blank-subresource.https.html | 31 ++++++++ .../samesite/about-blank-toplevel.https.html | 30 +++++++ .../tests/cookies/samesite/fetch.https.html | 40 ++++++++++ .../samesite/form-get-blank-reload.https.html | 66 ++++++++++++++++ .../cookies/samesite/form-get-blank.https.html | 68 ++++++++++++++++ .../samesite/form-post-blank-reload.https.html | 56 +++++++++++++ .../cookies/samesite/form-post-blank.https.html | 57 ++++++++++++++ .../samesite/get_all_cookies-default-samesite.html | 20 +++++ .../get_named_cookie-default-samesite.html | 18 +++++ .../cookies/samesite/iframe-reload.https.html | 55 +++++++++++++ .../cookies/samesite/iframe.document.https.html | 57 ++++++++++++++ .../tests/cookies/samesite/iframe.https.html | 79 +++++++++++++++++++ .../tests/cookies/samesite/img.https.html | 75 ++++++++++++++++++ .../multiple-samesite-attributes.https.html | 92 ++++++++++++++++++++++ .../cookies/samesite/resources/echo-cookies.html | 8 ++ .../samesite/resources/iframe-navigate-report.html | 3 + .../resources/iframe-subresource-report.html | 14 ++++ .../samesite/resources/iframe.document.html | 8 ++ .../samesite/resources/navigate-iframe.html | 26 ++++++ .../tests/cookies/samesite/resources/navigate.html | 25 ++++++ .../tests/cookies/samesite/resources/puppet.html | 32 ++++++++ .../samesite/sandbox-iframe-nested.https.html | 28 +++++++ .../samesite/sandbox-iframe-subresource.https.html | 28 +++++++ .../cookies/samesite/setcookie-lax.https.html | 32 ++++++++ .../samesite/setcookie-navigation.https.html | 81 +++++++++++++++++++ .../cookies/samesite/window-open-reload.https.html | 52 ++++++++++++ .../tests/cookies/samesite/window-open.https.html | 54 +++++++++++++ 28 files changed, 1164 insertions(+) create mode 100644 testing/web-platform/tests/cookies/samesite/about-blank-nested.https.html create mode 100644 testing/web-platform/tests/cookies/samesite/about-blank-subresource.https.html create mode 100644 testing/web-platform/tests/cookies/samesite/about-blank-toplevel.https.html create mode 100644 testing/web-platform/tests/cookies/samesite/fetch.https.html create mode 100644 testing/web-platform/tests/cookies/samesite/form-get-blank-reload.https.html create mode 100644 testing/web-platform/tests/cookies/samesite/form-get-blank.https.html create mode 100644 testing/web-platform/tests/cookies/samesite/form-post-blank-reload.https.html create mode 100644 testing/web-platform/tests/cookies/samesite/form-post-blank.https.html create mode 100644 testing/web-platform/tests/cookies/samesite/get_all_cookies-default-samesite.html create mode 100644 testing/web-platform/tests/cookies/samesite/get_named_cookie-default-samesite.html create mode 100644 testing/web-platform/tests/cookies/samesite/iframe-reload.https.html create mode 100644 testing/web-platform/tests/cookies/samesite/iframe.document.https.html create mode 100644 testing/web-platform/tests/cookies/samesite/iframe.https.html create mode 100644 testing/web-platform/tests/cookies/samesite/img.https.html create mode 100644 testing/web-platform/tests/cookies/samesite/multiple-samesite-attributes.https.html create mode 100644 testing/web-platform/tests/cookies/samesite/resources/echo-cookies.html create mode 100644 testing/web-platform/tests/cookies/samesite/resources/iframe-navigate-report.html create mode 100644 testing/web-platform/tests/cookies/samesite/resources/iframe-subresource-report.html create mode 100644 testing/web-platform/tests/cookies/samesite/resources/iframe.document.html create mode 100644 testing/web-platform/tests/cookies/samesite/resources/navigate-iframe.html create mode 100644 testing/web-platform/tests/cookies/samesite/resources/navigate.html create mode 100644 testing/web-platform/tests/cookies/samesite/resources/puppet.html create mode 100644 testing/web-platform/tests/cookies/samesite/sandbox-iframe-nested.https.html create mode 100644 testing/web-platform/tests/cookies/samesite/sandbox-iframe-subresource.https.html create mode 100644 testing/web-platform/tests/cookies/samesite/setcookie-lax.https.html create mode 100644 testing/web-platform/tests/cookies/samesite/setcookie-navigation.https.html create mode 100644 testing/web-platform/tests/cookies/samesite/window-open-reload.https.html create mode 100644 testing/web-platform/tests/cookies/samesite/window-open.https.html (limited to 'testing/web-platform/tests/cookies/samesite') diff --git a/testing/web-platform/tests/cookies/samesite/about-blank-nested.https.html b/testing/web-platform/tests/cookies/samesite/about-blank-nested.https.html new file mode 100644 index 0000000000..d5c9b8ada3 --- /dev/null +++ b/testing/web-platform/tests/cookies/samesite/about-blank-nested.https.html @@ -0,0 +1,29 @@ + + + + + + + + + + diff --git a/testing/web-platform/tests/cookies/samesite/about-blank-subresource.https.html b/testing/web-platform/tests/cookies/samesite/about-blank-subresource.https.html new file mode 100644 index 0000000000..0a19f30d34 --- /dev/null +++ b/testing/web-platform/tests/cookies/samesite/about-blank-subresource.https.html @@ -0,0 +1,31 @@ + + + + + + + + + diff --git a/testing/web-platform/tests/cookies/samesite/about-blank-toplevel.https.html b/testing/web-platform/tests/cookies/samesite/about-blank-toplevel.https.html new file mode 100644 index 0000000000..3a4dde7673 --- /dev/null +++ b/testing/web-platform/tests/cookies/samesite/about-blank-toplevel.https.html @@ -0,0 +1,30 @@ + + + + + + + + + diff --git a/testing/web-platform/tests/cookies/samesite/fetch.https.html b/testing/web-platform/tests/cookies/samesite/fetch.https.html new file mode 100644 index 0000000000..79e49009fb --- /dev/null +++ b/testing/web-platform/tests/cookies/samesite/fetch.https.html @@ -0,0 +1,40 @@ + + + + + + + diff --git a/testing/web-platform/tests/cookies/samesite/form-get-blank-reload.https.html b/testing/web-platform/tests/cookies/samesite/form-get-blank-reload.https.html new file mode 100644 index 0000000000..b5ab8ade91 --- /dev/null +++ b/testing/web-platform/tests/cookies/samesite/form-get-blank-reload.https.html @@ -0,0 +1,66 @@ + + + + + + diff --git a/testing/web-platform/tests/cookies/samesite/form-get-blank.https.html b/testing/web-platform/tests/cookies/samesite/form-get-blank.https.html new file mode 100644 index 0000000000..2fe81b2b56 --- /dev/null +++ b/testing/web-platform/tests/cookies/samesite/form-get-blank.https.html @@ -0,0 +1,68 @@ + + + + + + + diff --git a/testing/web-platform/tests/cookies/samesite/form-post-blank-reload.https.html b/testing/web-platform/tests/cookies/samesite/form-post-blank-reload.https.html new file mode 100644 index 0000000000..cdbb89ace5 --- /dev/null +++ b/testing/web-platform/tests/cookies/samesite/form-post-blank-reload.https.html @@ -0,0 +1,56 @@ + + + + + + diff --git a/testing/web-platform/tests/cookies/samesite/form-post-blank.https.html b/testing/web-platform/tests/cookies/samesite/form-post-blank.https.html new file mode 100644 index 0000000000..947853893d --- /dev/null +++ b/testing/web-platform/tests/cookies/samesite/form-post-blank.https.html @@ -0,0 +1,57 @@ + + + + + + + diff --git a/testing/web-platform/tests/cookies/samesite/get_all_cookies-default-samesite.html b/testing/web-platform/tests/cookies/samesite/get_all_cookies-default-samesite.html new file mode 100644 index 0000000000..3b1606b7f8 --- /dev/null +++ b/testing/web-platform/tests/cookies/samesite/get_all_cookies-default-samesite.html @@ -0,0 +1,20 @@ + + +TestDriver get_all_cookies method w/ default SameSite + + + + + diff --git a/testing/web-platform/tests/cookies/samesite/get_named_cookie-default-samesite.html b/testing/web-platform/tests/cookies/samesite/get_named_cookie-default-samesite.html new file mode 100644 index 0000000000..2ee5d0f29c --- /dev/null +++ b/testing/web-platform/tests/cookies/samesite/get_named_cookie-default-samesite.html @@ -0,0 +1,18 @@ + + +TestDriver get_named_cookie method w/ default SameSite + + + + + diff --git a/testing/web-platform/tests/cookies/samesite/iframe-reload.https.html b/testing/web-platform/tests/cookies/samesite/iframe-reload.https.html new file mode 100644 index 0000000000..d1916a805c --- /dev/null +++ b/testing/web-platform/tests/cookies/samesite/iframe-reload.https.html @@ -0,0 +1,55 @@ + + + + + + + + + diff --git a/testing/web-platform/tests/cookies/samesite/iframe.document.https.html b/testing/web-platform/tests/cookies/samesite/iframe.document.https.html new file mode 100644 index 0000000000..2d276dbcaa --- /dev/null +++ b/testing/web-platform/tests/cookies/samesite/iframe.document.https.html @@ -0,0 +1,57 @@ + + + + + + + + + diff --git a/testing/web-platform/tests/cookies/samesite/iframe.https.html b/testing/web-platform/tests/cookies/samesite/iframe.https.html new file mode 100644 index 0000000000..31b34ccf55 --- /dev/null +++ b/testing/web-platform/tests/cookies/samesite/iframe.https.html @@ -0,0 +1,79 @@ + + + + + + + + + diff --git a/testing/web-platform/tests/cookies/samesite/img.https.html b/testing/web-platform/tests/cookies/samesite/img.https.html new file mode 100644 index 0000000000..1ddc8d99ad --- /dev/null +++ b/testing/web-platform/tests/cookies/samesite/img.https.html @@ -0,0 +1,75 @@ + + + + + + + diff --git a/testing/web-platform/tests/cookies/samesite/multiple-samesite-attributes.https.html b/testing/web-platform/tests/cookies/samesite/multiple-samesite-attributes.https.html new file mode 100644 index 0000000000..d32a39639d --- /dev/null +++ b/testing/web-platform/tests/cookies/samesite/multiple-samesite-attributes.https.html @@ -0,0 +1,92 @@ + + + + + + + diff --git a/testing/web-platform/tests/cookies/samesite/resources/echo-cookies.html b/testing/web-platform/tests/cookies/samesite/resources/echo-cookies.html new file mode 100644 index 0000000000..a1b29b9b03 --- /dev/null +++ b/testing/web-platform/tests/cookies/samesite/resources/echo-cookies.html @@ -0,0 +1,8 @@ + + + diff --git a/testing/web-platform/tests/cookies/samesite/resources/iframe-navigate-report.html b/testing/web-platform/tests/cookies/samesite/resources/iframe-navigate-report.html new file mode 100644 index 0000000000..98ea469fda --- /dev/null +++ b/testing/web-platform/tests/cookies/samesite/resources/iframe-navigate-report.html @@ -0,0 +1,3 @@ + + diff --git a/testing/web-platform/tests/cookies/samesite/resources/iframe-subresource-report.html b/testing/web-platform/tests/cookies/samesite/resources/iframe-subresource-report.html new file mode 100644 index 0000000000..1dceb4e436 --- /dev/null +++ b/testing/web-platform/tests/cookies/samesite/resources/iframe-subresource-report.html @@ -0,0 +1,14 @@ + + + + + + diff --git a/testing/web-platform/tests/cookies/samesite/resources/iframe.document.html b/testing/web-platform/tests/cookies/samesite/resources/iframe.document.html new file mode 100644 index 0000000000..7026beb7e8 --- /dev/null +++ b/testing/web-platform/tests/cookies/samesite/resources/iframe.document.html @@ -0,0 +1,8 @@ + + diff --git a/testing/web-platform/tests/cookies/samesite/resources/navigate-iframe.html b/testing/web-platform/tests/cookies/samesite/resources/navigate-iframe.html new file mode 100644 index 0000000000..98ad6264fa --- /dev/null +++ b/testing/web-platform/tests/cookies/samesite/resources/navigate-iframe.html @@ -0,0 +1,26 @@ + + + + + diff --git a/testing/web-platform/tests/cookies/samesite/resources/navigate.html b/testing/web-platform/tests/cookies/samesite/resources/navigate.html new file mode 100644 index 0000000000..88de6dff92 --- /dev/null +++ b/testing/web-platform/tests/cookies/samesite/resources/navigate.html @@ -0,0 +1,25 @@ + + + + diff --git a/testing/web-platform/tests/cookies/samesite/resources/puppet.html b/testing/web-platform/tests/cookies/samesite/resources/puppet.html new file mode 100644 index 0000000000..6d36132d3a --- /dev/null +++ b/testing/web-platform/tests/cookies/samesite/resources/puppet.html @@ -0,0 +1,32 @@ + + + diff --git a/testing/web-platform/tests/cookies/samesite/sandbox-iframe-nested.https.html b/testing/web-platform/tests/cookies/samesite/sandbox-iframe-nested.https.html new file mode 100644 index 0000000000..310f86a446 --- /dev/null +++ b/testing/web-platform/tests/cookies/samesite/sandbox-iframe-nested.https.html @@ -0,0 +1,28 @@ + + + + + + + + + + diff --git a/testing/web-platform/tests/cookies/samesite/sandbox-iframe-subresource.https.html b/testing/web-platform/tests/cookies/samesite/sandbox-iframe-subresource.https.html new file mode 100644 index 0000000000..417089ef57 --- /dev/null +++ b/testing/web-platform/tests/cookies/samesite/sandbox-iframe-subresource.https.html @@ -0,0 +1,28 @@ + + + + + + + + + + diff --git a/testing/web-platform/tests/cookies/samesite/setcookie-lax.https.html b/testing/web-platform/tests/cookies/samesite/setcookie-lax.https.html new file mode 100644 index 0000000000..f2094af693 --- /dev/null +++ b/testing/web-platform/tests/cookies/samesite/setcookie-lax.https.html @@ -0,0 +1,32 @@ + + + + + + diff --git a/testing/web-platform/tests/cookies/samesite/setcookie-navigation.https.html b/testing/web-platform/tests/cookies/samesite/setcookie-navigation.https.html new file mode 100644 index 0000000000..2dbc5526bc --- /dev/null +++ b/testing/web-platform/tests/cookies/samesite/setcookie-navigation.https.html @@ -0,0 +1,81 @@ + + + + + + + diff --git a/testing/web-platform/tests/cookies/samesite/window-open-reload.https.html b/testing/web-platform/tests/cookies/samesite/window-open-reload.https.html new file mode 100644 index 0000000000..32076c7c97 --- /dev/null +++ b/testing/web-platform/tests/cookies/samesite/window-open-reload.https.html @@ -0,0 +1,52 @@ + + + + + + diff --git a/testing/web-platform/tests/cookies/samesite/window-open.https.html b/testing/web-platform/tests/cookies/samesite/window-open.https.html new file mode 100644 index 0000000000..be4225046a --- /dev/null +++ b/testing/web-platform/tests/cookies/samesite/window-open.https.html @@ -0,0 +1,54 @@ + + + + + + + -- cgit v1.2.3