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

Unified Diff: LayoutTests/inspector/elements/styles/styles-history.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/styles-history.html
diff --git a/LayoutTests/inspector/elements/styles/styles-history.html b/LayoutTests/inspector/elements/styles/styles-history.html
index 439cedab0eb68fac42a49071b8ef33416c2b09c2..961f4b4e09d08654e19dcc80a4f2bbc1feefc212 100644
--- a/LayoutTests/inspector/elements/styles/styles-history.html
+++ b/LayoutTests/inspector/elements/styles/styles-history.html
@@ -103,7 +103,7 @@ function test()
var rule = matchedStyles[i].rule;
if (rule.origin !== "regular")
continue;
- callback(WebInspector.CSSStyleDeclaration.parsePayload(WebInspector.cssModel, rule.style));
+ callback(WebInspector.CSSStyleDeclaration.parsePayload(InspectorTest.cssModel, rule.style));
return;
}
InspectorTest.addResult("error: did not find any regular rule");

Powered by Google App Engine
This is Rietveld 408576698