Dan Robertson
Dan Robertson
> Looking at this again, it seems we return start and end as byte sequences, not numbers. We probably want to interpret them as numbers and return those numbers in...
Yeah, looks good to me!
I originally incorrectly filed this as https://github.com/w3c/FileAPI/issues/177, but @inexorabletash correctly pointed out that in each of the test cases, while the content type from the header was not the empty...
> So what do browsers do then? Results of the tests pasted in the issue: |Test |Firefox |Chrome| Safari | |-------------------|-----------|--------|-----------------| |no `contentType` |`text/plain`|`null` |`application/xml`| |bad `contentType`|`text/plain`|`null` |`""` | >...
The tests from this issue are posted in https://github.com/web-platform-tests/wpt/pull/35469
https://github.com/whatwg/fetch/issues/1436 had a large amount of overlap with this issue, and the associated wpt tests PR https://github.com/web-platform-tests/wpt/pull/36243 contains tests for this [here](https://github.com/web-platform-tests/wpt/blob/master/fetch/api/basic/scheme-blob.sub.any.js#L78-L118). | Test | Safari | Chrome | Firefox...
This looks like an interesting issue, so I started writing some wpt tests for this. I haven't tried `data:` or `about:` urls yet, but I see the following for `blob:`:...
`blob:` turned out to be the most interesting of the bunch. Firefox, Safari, and Chrome all returned the same results for the tests I wrote for `data:` and `about:blank`. I'll...
According to [HTTP-RANGE Section 2.1](https://httpwg.org/specs/rfc7233.html#rfc.section.2.1): > The [last-byte-pos](https://httpwg.org/specs/rfc7233.html#rule.ranges-specifier) value gives the byte-offset of the last byte in the range; that is, the byte positions specified are inclusive. But according to...
> |Engine |Basic Range |Multiple Ranges| > |------------|--------------|----------------| > |Gecko |200/ignore range |200/ignore range| > |Webkit |206/correct range |416| > |Chrome |206/correct range |fetch failed| Chrome updated to ignore the...