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

Unified Diff: Source/devtools/front_end/Tests.js

Issue 185713007: DevTools: Add timestamp support in the console (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed apavlov's comments Created 6 years, 9 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: Source/devtools/front_end/Tests.js
diff --git a/Source/devtools/front_end/Tests.js b/Source/devtools/front_end/Tests.js
index 11711016fc1f2c8aa96ad9da341bebace5a4ed0b..1de94cd1b1e2dc9e645d2f14957174f744e2ef25 100644
--- a/Source/devtools/front_end/Tests.js
+++ b/Source/devtools/front_end/Tests.js
@@ -510,7 +510,7 @@ TestSuite.prototype.testConsoleOnNavigateBack = function()
function didClickLink() {
// Check that there are no new messages(command is not a message).
this.assertEquals(3, WebInspector.console.messages.length);
- this.assertEquals(1, WebInspector.console.messages[0].totalRepeatCount);
+ this.assertEquals(1, WebInspector.console.messages[0].repeatCount);
this.evaluateInConsole_("history.back();", didNavigateBack.bind(this));
}
@@ -522,7 +522,7 @@ TestSuite.prototype.testConsoleOnNavigateBack = function()
function didCompleteNavigation() {
this.assertEquals(7, WebInspector.console.messages.length);
- this.assertEquals(1, WebInspector.console.messages[0].totalRepeatCount);
+ this.assertEquals(1, WebInspector.console.messages[0].repeatCount);
this.releaseControl();
}

Powered by Google App Engine
This is Rietveld 408576698