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

Unified Diff: LayoutTests/inspector/runtime/runtime-getProperties.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/runtime/runtime-getProperties.html
diff --git a/LayoutTests/inspector/runtime/runtime-getProperties.html b/LayoutTests/inspector/runtime/runtime-getProperties.html
index 981117796e23bcf77541ec708ef6f0bc80c7fc49..05abc2a1d0ac2ab3cc7f9eb5c9b72328648911c6 100644
--- a/LayoutTests/inspector/runtime/runtime-getProperties.html
+++ b/LayoutTests/inspector/runtime/runtime-getProperties.html
@@ -22,13 +22,13 @@ function test()
function step1(error, result, wasThrown)
{
- obj1 = WebInspector.runtimeModel.createRemoteObject(result);
+ obj1 = InspectorTest.runtimeModel.createRemoteObject(result);
InspectorTest.RuntimeAgent.evaluate("object2", step2);
}
function step2(error, result, wasThrown)
{
- obj2 = WebInspector.runtimeModel.createRemoteObject(result);
+ obj2 = InspectorTest.runtimeModel.createRemoteObject(result);
next();
}
},

Powered by Google App Engine
This is Rietveld 408576698