summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fetch/nosniff/resources/x-content-type-options.json
blob: 080fc1990bf948e94733e8d231d738c8f4c6e1cd (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
56
57
58
59
60
61
62
[
  {
    "input": "X-Content-Type-Options: NOSNIFF",
    "nosniff": true
  },
  {
    "input": "x-content-type-OPTIONS: nosniff",
    "nosniff": true
  },
  {
    "input": "X-Content-Type-Options: nosniff,,@#$#%%&^&^*()()11!",
    "nosniff": true
  },
  {
    "input": "X-Content-Type-Options: @#$#%%&^&^*()()11!,nosniff",
    "nosniff": false
  },
  {
    "input": "X-Content-Type-Options: nosniff\r\nX-Content-Type-Options: no",
    "nosniff": true
  },
  {
    "input": "X-Content-Type-Options: no\r\nX-Content-Type-Options: nosniff",
    "nosniff": false
  },
  {
    "input": "X-Content-Type-Options:\r\nX-Content-Type-Options: nosniff",
    "nosniff": false
  },
  {
    "input": "X-Content-Type-Options: nosniff\r\nX-Content-Type-Options: nosniff",
    "nosniff": true
  },
  {
    "input": "X-Content-Type-Options: ,nosniff",
    "nosniff": false
  },
  {
    "input": "X-Content-Type-Options: nosniff\u000C",
    "nosniff": false
  },
  {
    "input": "X-Content-Type-Options: nosniff\u000B",
    "nosniff": false
  },
  {
    "input": "X-Content-Type-Options: nosniff\u000B,nosniff",
    "nosniff": false
  },
  {
    "input": "X-Content-Type-Options: 'NosniFF'",
    "nosniff": false
  },
  {
    "input": "X-Content-Type-Options: \"nosniFF\"",
    "nosniff": false
  },
  {
    "input": "Content-Type-Options: nosniff",
    "nosniff": false
  }
]