summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/cookies/encoding/charset.html
blob: 55fcc58aeabea0f5b108504fe690d5440b4414c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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>