Bug 176765

Summary: Web Inspector: Resource names should be less ambiguous
Product: WebKit Reporter: Joseph Pecoraro <joepeck>
Component: Web InspectorAssignee: Nobody <webkit-unassigned>
Status: RESOLVED DUPLICATE    
Severity: Normal CC: inspector-bugzilla-changes, joepeck
Priority: P2    
Version: WebKit Nightly Build   
Hardware: All   
OS: All   

Description Joseph Pecoraro 2017-09-11 21:15:37 PDT
Resource names should be less ambiguous

Example 1: Query string differences

    If a page loads:

        data.json?t=1
        data.json?t=2
        data.json?t=3

    Each of these show up as:

        data.json
        data.json
        data.json

    would be nicer:

        data.json?t=1
        data.json?t=2
        data.json?t=3


Example 2: Ambiguous last path component

Can happen with REST endpoints:
https://twitter.com/Skyrpex/status/905450335799570432

    If a page loads:

        /api/user/913578
        /api/group/78425
        /api/comment/124123

    Each of these show up as:

        913578
        78425
        124123

    Would be nicer:

        user/913578
        group/78425
        comment/124123
Comment 1 Joseph Pecoraro 2017-09-11 21:29:41 PDT
Err this is a duplicate of:
<https://webkit.org/b/143632> Web Inspector: Resources with the same name in different folders aren't distinguished

*** This bug has been marked as a duplicate of bug 143632 ***