Bug 127022 - Web Inspector: Implement the discrete Network timeline view
Summary: Web Inspector: Implement the discrete Network timeline view
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Web Inspector (show other bugs)
Version: 528+ (Nightly build)
Hardware: All All
: P2 Normal
Assignee: Timothy Hatcher
URL:
Keywords: InRadar
Depends on:
Blocks:
 
Reported: 2014-01-14 17:34 PST by Timothy Hatcher
Modified: 2014-01-20 19:04 PST (History)
4 users (show)

See Also:


Attachments
Patch (42.23 KB, patch)
2014-01-14 17:43 PST, Timothy Hatcher
joepeck: review+
timothy: commit-queue-
Details | Formatted Diff | Diff
Screenshot (545.37 KB, image/png)
2014-01-14 17:46 PST, Timothy Hatcher
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Timothy Hatcher 2014-01-14 17:34:01 PST
Time to add back the network timeline data grid view.
Comment 1 Timothy Hatcher 2014-01-14 17:43:07 PST
Created attachment 221216 [details]
Patch
Comment 2 Radar WebKit Bug Importer 2014-01-14 17:43:32 PST
<rdar://problem/15820928>
Comment 3 Radar WebKit Bug Importer 2014-01-14 17:43:49 PST
<rdar://problem/15820927>
Comment 4 Timothy Hatcher 2014-01-14 17:46:10 PST
Created attachment 221217 [details]
Screenshot
Comment 5 Joseph Pecoraro 2014-01-17 15:07:07 PST
Comment on attachment 221216 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=221216&action=review

r=me

> Source/WebInspectorUI/UserInterface/TimelineDataGrid.js:294
> +            if (isNaN(value1))
> +                return sortDirection * -1;
> +            if (isNaN(value2))
> +                return sortDirection * 1;

How about just return -sortDirection and return sortDirection?
Comment 6 Timothy Hatcher 2014-01-17 19:45:01 PST
Comment on attachment 221216 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=221216&action=review

>> Source/WebInspectorUI/UserInterface/TimelineDataGrid.js:294
>> +                return sortDirection * 1;
> 
> How about just return -sortDirection and return sortDirection?

Good idea.
Comment 7 Timothy Hatcher 2014-01-20 19:04:23 PST
https://trac.webkit.org/changeset/162415