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
|
{
"excluded_tests": [
{
// expectation=stripped-referrer only
"expansion": "*",
"source_scheme": "*",
"source_context_list": "*",
"redirection": "*",
"delivery_type": "*",
"delivery_value": "*",
"origin": "*",
"subresource": "*",
"expectation": [
"omitted",
"origin"
]
},
{
// Only on the top context
"expansion": "*",
"source_scheme": "*",
"source_context_list": [
"req",
"srcdoc-inherit",
"srcdoc",
"iframe",
"worker-classic",
"worker-classic-data",
"worker-module",
"worker-module-data"
],
"redirection": "*",
"delivery_type": "*",
"delivery_value": "*",
"origin": "*",
"subresource": "*",
"expectation": "*"
},
{
// subresources not yet tested.
"expansion": "*",
"source_scheme": "*",
"source_context_list": "*",
"redirection": "*",
"delivery_type": "*",
"delivery_value": "*",
"origin": "*",
"subresource": "sharedworker-module",
"expectation": "*"
}
]
}
|