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

Unified Diff: LayoutTests/inspector/console/console-css-warnings.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/console/console-css-warnings.html
diff --git a/LayoutTests/inspector/console/console-css-warnings.html b/LayoutTests/inspector/console/console-css-warnings.html
index 89f259764798de09b087642f53244c6827add340..22ff25df4d964e3559070516707c6479d1770be6 100644
--- a/LayoutTests/inspector/console/console-css-warnings.html
+++ b/LayoutTests/inspector/console/console-css-warnings.html
@@ -182,7 +182,7 @@ function test()
style.textContent = "x{y:*}";
document.head.appendChild(style);
- var messages = WebInspector.consoleModel.messages();
+ var messages = InspectorTest.consoleModel.messages();
for (var i = 0; i < messages.length; i++) {
if (messages[i].source === WebInspector.ConsoleMessage.MessageSource.CSS)
InspectorTest.addResult(messages[i].message + " (line: " + messages[i].line + ")");

Powered by Google App Engine
This is Rietveld 408576698