| Summary: | Web Inspector: Storage tab should have a scope bar in the sidebar | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Timothy Hatcher <timothy> | ||||||||||
| Component: | Web Inspector | Assignee: | Timothy Hatcher <timothy> | ||||||||||
| Status: | RESOLVED FIXED | ||||||||||||
| Severity: | Normal | CC: | bburg, graouts, joepeck, jonowells, mattbaker, nvasilyev, timothy, webkit-bug-importer | ||||||||||
| Priority: | P2 | Keywords: | InRadar | ||||||||||
| Version: | 528+ (Nightly build) | ||||||||||||
| Hardware: | All | ||||||||||||
| OS: | All | ||||||||||||
| Attachments: |
|
||||||||||||
|
Description
Timothy Hatcher
2015-07-09 12:52:02 PDT
Created attachment 256538 [details]
Patch
Created attachment 256539 [details]
Screenshot
Created attachment 256540 [details]
Patch
Created attachment 256542 [details]
Patch
Comment on attachment 256542 [details]
Patch
r=me
Comment on attachment 256542 [details] Patch r186654 Comment on attachment 256542 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=256542&action=review > Source/WebInspectorUI/UserInterface/Views/StorageSidebarPanel.js:49 > + {identifier: "local-sotrage", title: WebInspector.UIString("Local Storage"), classes: [WebInspector.DOMStorageTreeElement], localStorage: true}, > + {identifier: "session-sotrage", title: WebInspector.UIString("Session Storage"), classes: [WebInspector.DOMStorageTreeElement], localStorage: false}]; Oops. Just spotted these typos: "local-sotrage”, "session-sotrage" (In reply to comment #9) > Comment on attachment 256542 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=256542&action=review > > > Source/WebInspectorUI/UserInterface/Views/StorageSidebarPanel.js:49 > > + {identifier: "local-sotrage", title: WebInspector.UIString("Local Storage"), classes: [WebInspector.DOMStorageTreeElement], localStorage: true}, > > + {identifier: "session-sotrage", title: WebInspector.UIString("Session Storage"), classes: [WebInspector.DOMStorageTreeElement], localStorage: false}]; > > Oops. Just spotted these typos: "local-sotrage”, "session-sotrage" Fixed in a follow up. https://trac.webkit.org/r186690 |