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

Unified Diff: LayoutTests/inspector/elements/styles/add-new-rule-inline-style-csp.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/add-new-rule-inline-style-csp.html
diff --git a/LayoutTests/inspector/elements/styles/add-new-rule-inline-style-csp.html b/LayoutTests/inspector/elements/styles/add-new-rule-inline-style-csp.html
index 0591179af3977365d8309f44b273c7371e8fb4ad..9ae897950ae5117947b0525e22fb595304c56e6a 100644
--- a/LayoutTests/inspector/elements/styles/add-new-rule-inline-style-csp.html
+++ b/LayoutTests/inspector/elements/styles/add-new-rule-inline-style-csp.html
@@ -48,7 +48,7 @@ function test()
InspectorTest.completeTest();
} else {
dumpProperties(newStyle);
- WebInspector.cssModel.setRuleSelector(rule, nodeId, "body", successCallback, failureCallback);
+ InspectorTest.cssModel.setRuleSelector(rule, nodeId, "body", successCallback, failureCallback);
}
}
@@ -71,7 +71,7 @@ function test()
function testModifyInlineStyle(next)
{
- WebInspector.cssModel.getInlineStylesAsync(nodeId, stylesCallback);
+ InspectorTest.cssModel.getInlineStylesAsync(nodeId, stylesCallback);
function stylesCallback(inlineStyle)
{

Powered by Google App Engine
This is Rietveld 408576698