File tree Expand file tree Collapse file tree 7 files changed +35
-35
lines changed
tests/wpt-harness/expectations/fetch/api Expand file tree Collapse file tree 7 files changed +35
-35
lines changed Original file line number Diff line number Diff line change 51
51
"status" : " PASS"
52
52
},
53
53
"Request should get its content-type from the init request" : {
54
- "status" : " PASS "
54
+ "status" : " FAIL "
55
55
},
56
56
"Request should not get its content-type from the init request if init headers are provided" : {
57
57
"status" : " PASS"
58
58
},
59
59
"Request should get its content-type from the body if none is provided" : {
60
- "status" : " PASS "
60
+ "status" : " FAIL "
61
61
},
62
62
"Request should get its content-type from init headers if one is provided" : {
63
- "status" : " PASS "
63
+ "status" : " FAIL "
64
64
},
65
65
"Request with cache mode: only-if-cached and fetch mode: same-origin" : {
66
66
"status" : " PASS"
Original file line number Diff line number Diff line change 162
162
"status" : " FAIL"
163
163
},
164
164
"Check that no-cors request constructor is filtering headers provided as part of request parameter" : {
165
- "status" : " FAIL "
165
+ "status" : " PASS "
166
166
},
167
167
"Request should get its content-type from the init request" : {
168
- "status" : " PASS "
168
+ "status" : " FAIL "
169
169
},
170
170
"Request should not get its content-type from the init request if init headers are provided" : {
171
171
"status" : " PASS"
172
172
},
173
173
"Request should get its content-type from the body if none is provided" : {
174
- "status" : " PASS "
174
+ "status" : " FAIL "
175
175
},
176
176
"Request should get its content-type from init headers if one is provided" : {
177
- "status" : " PASS "
177
+ "status" : " FAIL "
178
178
},
179
179
"Testing request header creations with various objects" : {
180
180
"status" : " PASS"
Original file line number Diff line number Diff line change 3
3
"status" : " PASS"
4
4
},
5
5
"Constructing a Request with a stream on which getReader() is called" : {
6
- "status" : " FAIL "
6
+ "status" : " PASS "
7
7
},
8
8
"Constructing a Request with a stream on which read() is called" : {
9
- "status" : " FAIL "
9
+ "status" : " PASS "
10
10
},
11
11
"Constructing a Request with a stream on which read() and releaseLock() are called" : {
12
- "status" : " FAIL "
12
+ "status" : " PASS "
13
13
},
14
14
"Constructing a Request with a Request on which body.getReader() is called" : {
15
15
"status" : " FAIL"
Original file line number Diff line number Diff line change 1
1
{
2
2
"Throws RangeError when responseInit's status is 0" : {
3
- "status" : " FAIL "
3
+ "status" : " PASS "
4
4
},
5
5
"Throws RangeError when responseInit's status is 100" : {
6
- "status" : " FAIL "
6
+ "status" : " PASS "
7
7
},
8
8
"Throws RangeError when responseInit's status is 199" : {
9
- "status" : " FAIL "
9
+ "status" : " PASS "
10
10
},
11
11
"Throws RangeError when responseInit's status is 600" : {
12
- "status" : " FAIL "
12
+ "status" : " PASS "
13
13
},
14
14
"Throws RangeError when responseInit's status is 1000" : {
15
- "status" : " FAIL "
15
+ "status" : " PASS "
16
16
},
17
17
"Throws TypeError when responseInit's statusText is \n " : {
18
- "status" : " FAIL "
18
+ "status" : " PASS "
19
19
},
20
20
"Throws TypeError when responseInit's statusText is Ā" : {
21
- "status" : " FAIL "
21
+ "status" : " PASS "
22
22
},
23
23
"Throws TypeError when building a response with body and a body status of 204" : {
24
- "status" : " FAIL "
24
+ "status" : " PASS "
25
25
},
26
26
"Throws TypeError when building a response with body and a body status of 205" : {
27
- "status" : " FAIL "
27
+ "status" : " PASS "
28
28
},
29
29
"Throws TypeError when building a response with body and a body status of 304" : {
30
- "status" : " FAIL "
30
+ "status" : " PASS "
31
31
}
32
32
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"Constructing a Response with a stream on which getReader() is called" : {
3
- "status" : " FAIL "
3
+ "status" : " PASS "
4
4
},
5
5
"Constructing a Response with a stream on which read() is called" : {
6
- "status" : " FAIL "
6
+ "status" : " PASS "
7
7
},
8
8
"Constructing a Response with a stream on which read() and releaseLock() are called" : {
9
- "status" : " FAIL "
9
+ "status" : " PASS "
10
10
}
11
11
}
Original file line number Diff line number Diff line change 3
3
"status" : " FAIL"
4
4
},
5
5
"Getting text after getting a locked Response body (body source: fetch)" : {
6
- "status" : " FAIL "
6
+ "status" : " PASS "
7
7
},
8
8
"Getting json after getting a locked Response body (body source: fetch)" : {
9
- "status" : " FAIL "
9
+ "status" : " PASS "
10
10
},
11
11
"Getting arrayBuffer after getting a locked Response body (body source: fetch)" : {
12
- "status" : " FAIL "
12
+ "status" : " PASS "
13
13
},
14
14
"Getting blob after getting a locked Response body (body source: stream)" : {
15
15
"status" : " FAIL"
27
27
"status" : " FAIL"
28
28
},
29
29
"Getting text after getting a locked Response body (body source: string)" : {
30
- "status" : " FAIL "
30
+ "status" : " PASS "
31
31
},
32
32
"Getting json after getting a locked Response body (body source: string)" : {
33
- "status" : " FAIL "
33
+ "status" : " PASS "
34
34
},
35
35
"Getting arrayBuffer after getting a locked Response body (body source: string)" : {
36
- "status" : " FAIL "
36
+ "status" : " PASS "
37
37
}
38
38
}
Original file line number Diff line number Diff line change 3
3
"status" : " FAIL"
4
4
},
5
5
"Getting text after reading the Response body (body source: fetch)" : {
6
- "status" : " FAIL "
6
+ "status" : " PASS "
7
7
},
8
8
"Getting json after reading the Response body (body source: fetch)" : {
9
- "status" : " FAIL "
9
+ "status" : " PASS "
10
10
},
11
11
"Getting arrayBuffer after reading the Response body (body source: fetch)" : {
12
- "status" : " FAIL "
12
+ "status" : " PASS "
13
13
},
14
14
"Getting blob after reading the Response body (body source: stream)" : {
15
15
"status" : " FAIL"
27
27
"status" : " FAIL"
28
28
},
29
29
"Getting text after reading the Response body (body source: string)" : {
30
- "status" : " FAIL "
30
+ "status" : " PASS "
31
31
},
32
32
"Getting json after reading the Response body (body source: string)" : {
33
- "status" : " FAIL "
33
+ "status" : " PASS "
34
34
},
35
35
"Getting arrayBuffer after reading the Response body (body source: string)" : {
36
- "status" : " FAIL "
36
+ "status" : " PASS "
37
37
}
38
38
}
You can’t perform that action at this time.
0 commit comments