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

Unified Diff: LayoutTests/inspector/elements/styles/undo-change-property.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/elements/styles/undo-change-property.html
diff --git a/LayoutTests/inspector/elements/styles/undo-change-property.html b/LayoutTests/inspector/elements/styles/undo-change-property.html
index f001aad26684bbc14ea982f464a3f44179314fd9..c19e6ca01511bd0738d38d7b808c62882eccfc0a 100644
--- a/LayoutTests/inspector/elements/styles/undo-change-property.html
+++ b/LayoutTests/inspector/elements/styles/undo-change-property.html
@@ -30,7 +30,7 @@ function test()
InspectorTest.addResult("After changing property");
InspectorTest.dumpSelectedElementStyles(true);
- WebInspector.domModel.undo();
+ InspectorTest.domModel.undo();
InspectorTest.selectNodeAndWaitForStyles("other", step3);
}
@@ -39,7 +39,7 @@ function test()
InspectorTest.addResult("After undo");
InspectorTest.dumpSelectedElementStyles(true);
- WebInspector.domModel.redo();
+ InspectorTest.domModel.redo();
InspectorTest.selectNodeAndWaitForStyles("container", step4);
}

Powered by Google App Engine
This is Rietveld 408576698