[Webkit-unassigned] [Bug 178069] New: Web Inspector: Network Tab - Headers View - Add support for HTTP Trailing Headers

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Oct 8 15:13:33 PDT 2017


https://bugs.webkit.org/show_bug.cgi?id=178069

            Bug ID: 178069
           Summary: Web Inspector: Network Tab - Headers View - Add
                    support for HTTP Trailing Headers
           Product: WebKit
           Version: WebKit Nightly Build
          Hardware: All
                OS: All
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: Web Inspector
          Assignee: webkit-unassigned at lists.webkit.org
          Reporter: joepeck at webkit.org
                CC: inspector-bugzilla-changes at group.apple.com,
                    sam at webkit.org

Network Tab - Headers View - Add support for HTTP Trailing Headers

An HTTP Request can include trailing headers at the end the message. We should include these in the Headers view in the Network tab.

MDN:
https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Trailer

> The Trailer response header allows the sender to include additional fields at the end
> of chunked messages in order to supply metadata that might be dynamically generated
> while the message body is sent, such as a message integrity check, digital signature,
> or post-processing status.

Example:

> HTTP/1.1 200 OK 
> Content-Type: text/plain 
> Transfer-Encoding: chunked
> Trailer: Expires
> 
> 7\r\n 
> Mozilla\r\n 
> 9\r\n 
> Developer\r\n 
> 7\r\n 
> Network\r\n 
> 0\r\n 
> Expires: Wed, 21 Oct 2015 07:28:00 GMT\r\n
> \r\n

Notes:
• Trailing headers will also be exposed in the Fetch APIs. Support does not exist right now.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20171008/aee011ee/attachment-0001.html>


More information about the webkit-unassigned mailing list