-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Open
Labels
data:httpCompat data for HTTP features. https://developer.mozilla.org/docs/Web/HTTPCompat data for HTTP features. https://developer.mozilla.org/docs/Web/HTTPp3Medium priority – Community PRs encouraged.Medium priority – Community PRs encouraged.
Description
What type of issue is this?
Missing compatibility data
What information was incorrect, unhelpful, or incomplete?
See mdn/content#24625. This is supported in FF 118; it works in the latest versions of Chrome/Safari, but not sure since when.
What browsers does this problem apply to, if applicable?
No response
What did you expect to see?
A new subfeature about using it with blob:
Did you test this? If so, how?
const blob = new Blob(["Hello, world!"], { type: "text/plain" });
const url = URL.createObjectURL(blob);
fetch(url, {
headers: {
Range: "bytes=7-11",
},
})
.then((response) => response.text())
.then((text) => console.log(text)); // "world"Can you link to any release notes, bugs, pull requests, or MDN pages related to this?
Implementation bugs linked in whatwg/fetch#1520
Do you have anything more you want to share?
No response
MDN URL
https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Range
MDN metadata
MDN page report details
- Query:
http.headers.Range - Report started: 2025-09-10T19:25:55.630Z
Metadata
Metadata
Assignees
Labels
data:httpCompat data for HTTP features. https://developer.mozilla.org/docs/Web/HTTPCompat data for HTTP features. https://developer.mozilla.org/docs/Web/HTTPp3Medium priority – Community PRs encouraged.Medium priority – Community PRs encouraged.