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

Unified Diff: LayoutTests/inspector/console/console-timestamp.html

Issue 185713007: DevTools: Add timestamp support in the console (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
« no previous file with comments | « no previous file | LayoutTests/inspector/console/console-timestamp-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/inspector/console/console-timestamp.html
diff --git a/LayoutTests/inspector/console/console-timestamp.html b/LayoutTests/inspector/console/console-timestamp.html
new file mode 100644
index 0000000000000000000000000000000000000000..1865e0b530c75cf230a4497058555c1b240dbcd8
--- /dev/null
+++ b/LayoutTests/inspector/console/console-timestamp.html
@@ -0,0 +1,53 @@
+<html>
+<head>
+<script src="../../http/tests/inspector/inspector-test.js"></script>
+<script src="../../http/tests/inspector/console-test.js"></script>
+<script>
+function test()
+{
+ var tzOffset = new Date(Date.now()).getTimezoneOffset() * 60 * 1000;
+ var baseTimestamp = 1400000000000 + tzOffset;
+
+ function addMessageWithFixedTimestamp(messageText, timestamp)
+ {
+ var message = new WebInspector.ConsoleMessage(
+ WebInspector.ConsoleMessage.MessageSource.Other, // source
+ WebInspector.ConsoleMessage.MessageLevel.Log, // level
+ messageText,
+ undefined, // type
+ undefined, // url
+ undefined, // line
+ undefined, // column
+ undefined, // requestId
+ undefined, // parameters
+ undefined, // stackTrace
+ timestamp || baseTimestamp + 123, // timestamp: 2014-05-13T16:53:20.123Z
+ false); // isOutdated
+ WebInspector.console.addMessage(message, true); // allowGrouping
+ }
+
+ InspectorTest.addResult("Console messages with timestamps disabled:");
+ addMessageWithFixedTimestamp("<Before>");
+ addMessageWithFixedTimestamp("<Before>");
+ addMessageWithFixedTimestamp("<Before>", baseTimestamp + 456);
+
+ InspectorTest.dumpConsoleMessages();
+
+ InspectorTest.addResult("Console messages with timestamps enabled:");
+ WebInspector.settings.consoleTimestampsEnabled.set(true);
+
+ addMessageWithFixedTimestamp("<After>");
+ addMessageWithFixedTimestamp("<After>");
+ addMessageWithFixedTimestamp("<After>", baseTimestamp + 456);
+
+ InspectorTest.dumpConsoleMessages();
+ InspectorTest.completeTest();
+}
+</script>
+</head>
+<body onload="runTest()">
+<p>
+Tests the console timestamp setting.
+</p>
+</body>
+</html>
« no previous file with comments | « no previous file | LayoutTests/inspector/console/console-timestamp-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698