summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fetch/content-type/resources/script-content-types.json
blob: b8a843bcd82ed48966e4ceacc8f46a520877a017 (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[
  {
    "contentType": ["text/javascript;charset=windows-1252"],
    "executes": true,
    "encoding": "windows-1252"
  },
  {
    "contentType": ["text/javascript;\";charset=windows-1252"],
    "executes": true,
    "encoding": "windows-1252"
  },
  {
    "contentType": ["text/javascript\u000C"],
    "executes": false,
    "encoding": null
  },
  {
    "contentType": ["\"text/javascript\""],
    "executes": false,
    "encoding": null
  },
  {
    "contentType": ["text/ javascript"],
    "executes": false,
    "encoding": null
  },
  {
    "contentType": ["text /javascript"],
    "executes": false,
    "encoding": null
  },
  {
    "contentType": ["x/x", "text/javascript"],
    "executes": true,
    "encoding": null
  },
  {
    "contentType": ["x/x;charset=windows-1252", "text/javascript"],
    "executes": true,
    "encoding": null
  },
  {
    "contentType": ["text/javascript", "x/x"],
    "executes": false,
    "encoding": null
  },
  {
    "contentType": ["text/javascript; charset=windows-1252", "text/javascript"],
    "executes": true,
    "encoding": "windows-1252"
  },
  {
    "contentType": ["text/javascript;\"", "x/x"],
    "executes": true,
    "encoding": null
  },
  {
    "contentType": ["text/javascript", ""],
    "executes": true,
    "encoding": null
  },
  {
    "contentType": ["text/javascript", "error"],
    "executes": true,
    "encoding": null
  },
  {
    "contentType": ["text/javascript;charset=windows-1252", "x/x", "text/javascript"],
    "executes": true,
    "encoding": null
  },
  {
    "contentType": ["text/javascript;charset=windows-1252", "error", "text/javascript"],
    "executes": true,
    "encoding": "windows-1252"
  },
  {
    "contentType": ["text/javascript;charset=windows-1252", "", "text/javascript"],
    "executes": true,
    "encoding": "windows-1252"
  },
  {
    "contentType": ["text/javascript;charset=windows-1252;\"", "\\\"", "x/x"],
    "executes": true,
    "encoding": "windows-1252"
  },
  {
    "contentType": ["x/x;\"", "x/y;\\\"", "text/javascript;charset=windows-1252;\"", "text/javascript"],
    "executes": true,
    "encoding": null
  }
]