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

Unified Diff: LayoutTests/inspector/runtime/runtime-setPropertyValue.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-setPropertyValue.html
diff --git a/LayoutTests/inspector/runtime/runtime-setPropertyValue.html b/LayoutTests/inspector/runtime/runtime-setPropertyValue.html
index 7b391fc77e83b61fe10a7fdeda012227e3987b23..70d23e1aca3766069b9128b5fe5e4043be00c942 100644
--- a/LayoutTests/inspector/runtime/runtime-setPropertyValue.html
+++ b/LayoutTests/inspector/runtime/runtime-setPropertyValue.html
@@ -43,13 +43,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