diff --git a/source b/source index 07a07aa6b15..54f7db65dfb 100644 --- a/source +++ b/source @@ -34710,8 +34710,8 @@ interface MediaError {
Let request be the result of creating a potential-CORS request given
current media resource's URL record, destination, and the
- media element's crossorigin
- content attribute value.
crossorigin
content attribute.
Set request's client to the media element's node document's relevant settings @@ -34728,9 +34728,17 @@ interface MediaError { im which case byteRange would be a (number, number) tuple representing the two offsets.
If byteRange is not null, then add a range header to - request given byteRange[0] and - byteRange[1].
If byteRange is not "entire resource
", then:
If byteRange[1] is "until end
" then
+ add a range header to request given
+ byteRange[0].
Otherwise, add a range header to request given + byteRange[0] and byteRange[1].
Fetch request, with