Bug 176483
Summary: | Provide an HTTP/2 LayoutTest server | ||
---|---|---|---|
Product: | WebKit | Reporter: | Joseph Pecoraro <joepeck> |
Component: | Tools / Tests | Assignee: | Nobody <webkit-unassigned> |
Status: | NEW | ||
Severity: | Normal | CC: | achristensen, ap, basuke, jbedard, joepeck, lforschler, youennf |
Priority: | P2 | ||
Version: | WebKit Nightly Build | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
See Also: | https://bugs.webkit.org/show_bug.cgi?id=207656 |
Joseph Pecoraro
It would be useful to have an HTTP/2 server for LayoutTests to test various web features.
1. Test differences between HTTP/1.1 and HTTP/2
2. Test Web APIs that expose networking details
For example:
• Resource Timing Entries include the `nextHopProtocol` to describe the networking protocol used (`http1/1`, `h2`, etc)
<https://w3c.github.io/resource-timing/#dom-performanceresourcetiming-nexthopprotocol>
• Fetch Response `statusText` property tests the HTTP status message (HTTP/2 doesn't have this)
<https://webkit.org/b/176479>
Notes:
Apache has a guide for including HTTP/2 support:
<https://httpd.apache.org/docs/2.4/howto/http2.html>
Interestingly you can limit support to a VirtualHost, so maybe we could keep one apache instance and just enable a virtual host in a different http2 subdirectory.
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
Basuke Suzuki
We really need this environment. Same thing with WebSocket server, using python to implement H2 server?