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

Unified Diff: LayoutTests/inspector/elements/styles/undo-property-toggle.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-property-toggle.html
diff --git a/LayoutTests/inspector/elements/styles/undo-property-toggle.html b/LayoutTests/inspector/elements/styles/undo-property-toggle.html
index 2e12afbfdf8f4bdf0af11c4f926128b9afe7ba24..c300b25328f36bf391b957b48f01a41c65418c78 100644
--- a/LayoutTests/inspector/elements/styles/undo-property-toggle.html
+++ b/LayoutTests/inspector/elements/styles/undo-property-toggle.html
@@ -24,7 +24,7 @@ function test()
var treeItem = InspectorTest.getElementStylePropertyTreeItem("font-weight");
InspectorTest.dumpStyleTreeItem(treeItem, "");
- WebInspector.domModel.undo();
+ InspectorTest.domModel.undo();
InspectorTest.waitForStyles("container", step3);
}
@@ -34,7 +34,7 @@ function test()
var treeItem = InspectorTest.getElementStylePropertyTreeItem("font-weight");
InspectorTest.dumpStyleTreeItem(treeItem, "");
- WebInspector.domModel.redo();
+ InspectorTest.domModel.redo();
InspectorTest.waitForStyles("container", step4);
}

Powered by Google App Engine
This is Rietveld 408576698