Bug 176765 - Web Inspector: Resource names should be less ambiguous
Summary: Web Inspector: Resource names should be less ambiguous
Status: RESOLVED DUPLICATE of bug 143632
Alias: None
Product: WebKit
Classification: Unclassified
Component: Web Inspector (show other bugs)
Version: WebKit Nightly Build
Hardware: All All
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-09-11 21:15 PDT by Joseph Pecoraro
Modified: 2017-09-11 21:29 PDT (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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 ***