diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /testing/web-platform/tests/cookies/encoding | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/cookies/encoding')
-rw-r--r-- | testing/web-platform/tests/cookies/encoding/charset.html | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/testing/web-platform/tests/cookies/encoding/charset.html b/testing/web-platform/tests/cookies/encoding/charset.html new file mode 100644 index 0000000000..55fcc58aea --- /dev/null +++ b/testing/web-platform/tests/cookies/encoding/charset.html @@ -0,0 +1,55 @@ +<!doctype html> +<html> + <head> + <meta charset=utf-8> + <title>Test utf-8 and ASCII cookie parsing</title> + <meta name=help href="https://tools.ietf.org/html/rfc6265#section-4.1.1"> + <meta name="timeout" content="long"> + <script src="/resources/testharness.js"></script> + <script src="/resources/testharnessreport.js"></script> + <script src="/resources/testdriver.js"></script> + <script src="/resources/testdriver-vendor.js"></script> + <script src="/cookies/resources/cookie-test.js"></script> + </head> + <body> + <div id=log></div> + <script> + const charsetTests = [ + { + cookie: "test=1春节回家路·春运完全手册", + expected: "test=1春节回家路·春运完全手册", + name: "ASCII name and utf-8 value", + }, + { + cookie: "тест=2", + expected: "тест=2", + name: "utf-8 name and ASCII value", + }, + { + cookie: 'test="3春节回家路·春运完全手册"', + expected: 'test="3春节回家路·春运完全手册"', + name: "ASCII name and quoted utf-8 value", + }, + { + cookie: "春节回=4家路·春运完全手册", + expected: "春节回=4家路·春运完全手册", + name: "utf-8 name and value", + }, + { + cookie: '"春节回=5家路·春运完全手册"', + expected: '"春节回=5家路·春运完全手册"', + name: "quoted utf-8 name and value", + }, + { + cookie: "春节回=6家路·春运; 完全手册", + expected: "春节回=6家路·春运", + name: "utf-8 name and value, with (invalid) utf-8 attribute", + }, + ]; + + for (const test of charsetTests) { + httpCookieTest(test.cookie, test.expected, test.name); + } + </script> + </body> +</html>
\ No newline at end of file |