summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/cookies/encoding
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/cookies/encoding
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
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.html55
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