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

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

Issue 881263002: DevTools: use target-based model accessors only. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 11 months 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: LayoutTests/inspector/storage-panel-dom-storage.html
diff --git a/LayoutTests/inspector/storage-panel-dom-storage.html b/LayoutTests/inspector/storage-panel-dom-storage.html
index c07f45f0ade7abcc9772dc7733080545a76ededc..c50d4475f1cf3baa8144081bb31422e5da501f73 100644
--- a/LayoutTests/inspector/storage-panel-dom-storage.html
+++ b/LayoutTests/inspector/storage-panel-dom-storage.html
@@ -40,7 +40,7 @@ function test()
}
InspectorTest.runAfterPendingDispatches(function() {
- var storages = WebInspector.domStorageModel.storages();
+ var storages = InspectorTest.domStorageModel.storages();
if (storages) {
for (var i = 0; i < storages.length; i++) {
var storage = storages[i];
@@ -51,7 +51,7 @@ function test()
InspectorTest.addResult("FAIL: no DOM storages found.");
InspectorTest.runAfterPendingDispatches(function() {
- var storages = WebInspector.domStorageModel.storages();
+ var storages = InspectorTest.domStorageModel.storages();
for (var i = 0; i < storages.length; i++) {
var storage = storages[i];
InspectorTest.addResult(name(storage) + " content: ");

Powered by Google App Engine
This is Rietveld 408576698