-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1603090 [wpt PR 20720] - Fetch: remove support for Response's tra…
…iler, a=testonly Automatic update from web-platform-tests Fetch: remove support for Response's trailer See whatwg/fetch#979. -- wpt-commits: 1db21a0158e71f849e151c4111a804ed15df855e wpt-pr: 20720 UltraBlame original commit: e48da00946f8f65a57afe14904884a094ff86d60
- Loading branch information
Showing
4 changed files
with
159 additions
and
451 deletions.
There are no files selected for viewing
159 changes: 159 additions & 0 deletions
159
testing/web-platform/tests/fetch/api/basic/historical.any.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,159 @@ | ||
test | ||
( | ||
( | ||
) | ||
= | ||
> | ||
{ | ||
assert_false | ||
( | ||
" | ||
getAll | ||
" | ||
in | ||
new | ||
Headers | ||
( | ||
) | ||
) | ||
; | ||
assert_false | ||
( | ||
" | ||
getAll | ||
" | ||
in | ||
Headers | ||
. | ||
prototype | ||
) | ||
; | ||
} | ||
" | ||
Headers | ||
object | ||
no | ||
longer | ||
has | ||
a | ||
getAll | ||
( | ||
) | ||
method | ||
" | ||
) | ||
; | ||
test | ||
( | ||
( | ||
) | ||
= | ||
> | ||
{ | ||
assert_false | ||
( | ||
" | ||
type | ||
" | ||
in | ||
new | ||
Request | ||
( | ||
" | ||
about | ||
: | ||
blank | ||
" | ||
) | ||
) | ||
; | ||
assert_false | ||
( | ||
" | ||
type | ||
" | ||
in | ||
Request | ||
. | ||
prototype | ||
) | ||
; | ||
} | ||
" | ||
' | ||
type | ||
' | ||
getter | ||
should | ||
not | ||
exist | ||
on | ||
Request | ||
objects | ||
" | ||
) | ||
; | ||
/ | ||
/ | ||
See | ||
https | ||
: | ||
/ | ||
/ | ||
github | ||
. | ||
com | ||
/ | ||
whatwg | ||
/ | ||
fetch | ||
/ | ||
pull | ||
/ | ||
979 | ||
for | ||
the | ||
removal | ||
test | ||
( | ||
( | ||
) | ||
= | ||
> | ||
{ | ||
assert_false | ||
( | ||
" | ||
trailer | ||
" | ||
in | ||
new | ||
Response | ||
( | ||
) | ||
) | ||
; | ||
assert_false | ||
( | ||
" | ||
trailer | ||
" | ||
in | ||
Response | ||
. | ||
prototype | ||
) | ||
; | ||
} | ||
" | ||
Response | ||
object | ||
no | ||
longer | ||
has | ||
a | ||
trailer | ||
getter | ||
" | ||
) | ||
; |
40 changes: 0 additions & 40 deletions
40
testing/web-platform/tests/fetch/api/headers/historical.any.js
This file was deleted.
Oops, something went wrong.
125 changes: 0 additions & 125 deletions
125
testing/web-platform/tests/fetch/api/request/request-type-attribute-historical.html
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.