Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Unified Diff: third_party/WebKit/LayoutTests/inspector/storage-panel-dom-storage.html

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/inspector/storage-panel-dom-storage.html
diff --git a/third_party/WebKit/LayoutTests/inspector/storage-panel-dom-storage.html b/third_party/WebKit/LayoutTests/inspector/storage-panel-dom-storage.html
index 71801f953ef2d3c44f1f0b16c79e26cbf2984451..13f7aa2d5b0876045117f5b727c57a352879670e 100644
--- a/third_party/WebKit/LayoutTests/inspector/storage-panel-dom-storage.html
+++ b/third_party/WebKit/LayoutTests/inspector/storage-panel-dom-storage.html
@@ -44,7 +44,7 @@ function test()
if (storages) {
for (var i = 0; i < storages.length; i++) {
var storage = storages[i];
- WebInspector.panels.resources._showDOMStorage(storage);
+ UI.panels.resources._showDOMStorage(storage);
InspectorTest.addResult("Did show: " + name(storage));
}
} else
@@ -55,7 +55,7 @@ function test()
for (var i = 0; i < storages.length; i++) {
var storage = storages[i];
InspectorTest.addResult(name(storage) + " content: ");
- var view = WebInspector.panels.resources._domStorageViews.get(storage);
+ var view = UI.panels.resources._domStorageViews.get(storage);
dumpDataGridContent(view._dataGrid);
}
InspectorTest.addResult("DONE");

Powered by Google App Engine
This is Rietveld 408576698