[Webkit-unassigned] [Bug 170514] New: Web Inspector: Duplicate response headers should be shown individually if that is how they were sent

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Apr 5 11:25:01 PDT 2017


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

            Bug ID: 170514
           Summary: Web Inspector: Duplicate response headers should be
                    shown individually if that is how they were sent
           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

Duplicate response headers should be shown individually if that is how they were sent

Test:
<?php
header("X-Test-Header: Alpha", false);
header("X-Test-Header: Beta", false);
?>

Steps to Reproduce:
1. Inspect test page
2. Observe Response Headers for main resource

Expected:

    X-Test-Header: Alpha
    X-Test-Header: Beta

Actual:

    X-Test-Header: Alpha, Beta

Notes:
* While technically equivalent, I'd rather see what actually instead of some reformulation:

    $ curl --verbose .../test.php
    ...
    < HTTP/1.1 200 OK
    < Date: Wed, 05 Apr 2017 18:22:24 GMT
    < Server: Apache/2.4.25 (Unix) PHP/5.6.30
    < X-Powered-By: PHP/5.6.30
    < X-Test-Header: Alpha
    < X-Test-Header: Beta
    < Content-Length: 19
    < Content-Type: text/html; charset=UTF-8
    ...

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


More information about the webkit-unassigned mailing list