Changeset 186690 in webkit
- Timestamp:
- Jul 10, 2015, 2:17:47 PM (11 years ago)
- Location:
- trunk/Source/WebInspectorUI
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UserInterface/Views/StorageSidebarPanel.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebInspectorUI/ChangeLog
r186654 r186690 1 2015-07-10 Timothy Hatcher <timothy@apple.com> 2 3 Web Inspector: Storage tab should have a scope bar in the sidebar 4 https://bugs.webkit.org/show_bug.cgi?id=146799 5 6 Fix a couple typos found post review. 7 8 * UserInterface/Views/StorageSidebarPanel.js: 9 (WebInspector.StorageSidebarPanel): 10 1 11 2015-07-09 Timothy Hatcher <timothy@apple.com> 2 12 -
trunk/Source/WebInspectorUI/UserInterface/Views/StorageSidebarPanel.js
r186654 r186690 46 46 {identifier: "database", title: WebInspector.UIString("Databases"), classes: [WebInspector.DatabaseHostTreeElement, WebInspector.DatabaseTableTreeElement, WebInspector.DatabaseTreeElement]}, 47 47 {identifier: "indexed-database", title: WebInspector.UIString("Indexed Databases"), classes: [WebInspector.IndexedDatabaseHostTreeElement, WebInspector.IndexedDatabaseObjectStoreTreeElement, WebInspector.IndexedDatabaseTreeElement]}, 48 {identifier: "local-s otrage", title: WebInspector.UIString("Local Storage"), classes: [WebInspector.DOMStorageTreeElement], localStorage: true},49 {identifier: "session-s otrage", title: WebInspector.UIString("Session Storage"), classes: [WebInspector.DOMStorageTreeElement], localStorage: false}];48 {identifier: "local-storage", title: WebInspector.UIString("Local Storage"), classes: [WebInspector.DOMStorageTreeElement], localStorage: true}, 49 {identifier: "session-storage", title: WebInspector.UIString("Session Storage"), classes: [WebInspector.DOMStorageTreeElement], localStorage: false}]; 50 50 51 51 storageTypes.sort(function(a, b) { return a.title.localeCompare(b.title); });
Note:
See TracChangeset
for help on using the changeset viewer.