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-timestamp.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-timestamp.html
diff --git a/LayoutTests/inspector/console/console-timestamp.html b/LayoutTests/inspector/console/console-timestamp.html
index 06d5b49e270e2a92b798b7303767d48272d5cfd5..9707a2ab43d0c44120f783800f81e9e7ad14f7d9 100644
--- a/LayoutTests/inspector/console/console-timestamp.html
+++ b/LayoutTests/inspector/console/console-timestamp.html
@@ -14,7 +14,7 @@ function test()
function addMessageWithFixedTimestamp(messageText, timestamp)
{
var message = new WebInspector.ConsoleMessage(
- WebInspector.consoleModel.target(),
+ InspectorTest.consoleModel.target(),
WebInspector.ConsoleMessage.MessageSource.Other, // source
WebInspector.ConsoleMessage.MessageLevel.Log, // level
messageText,
@@ -27,7 +27,7 @@ function test()
undefined, // stackTrace
timestamp || baseTimestamp + 123, // timestamp: 2014-05-13T16:53:20.123Z
false); // isOutdated
- WebInspector.consoleModel.addMessage(message, true); // allowGrouping
+ InspectorTest.consoleModel.addMessage(message, true); // allowGrouping
}
InspectorTest.addResult("Console messages with timestamps disabled:");

Powered by Google App Engine
This is Rietveld 408576698