user3612643
user3612643

Reputation: 5772

Access to HTTP/2 trailers in a browser

Is there any browser that currently supports accessing trailers in an HTTP/2 response?

For example, the latest Fetch API specs mention that trailers are exposed via Response.trailer. Is there a browser that supports that?

Upvotes: 5

Views: 1305

Answers (1)

sideshowbarker
sideshowbarker

Reputation: 88096

You can find a test case at http://wpt.fyi/fetch/api/response. See the results row for the test file response-trailer.html, and see also http://wpt.fyi/fetch/api/response/response-trailer.html.

Based on those results and their failure messages, it looks like there aren’t any browser engines that currently support Response.trailer.

But there are open browser feature bugs for it which you might want to follow:

Upvotes: 7

Related Questions