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

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: Make repeat count work Created 6 years, 10 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
new file mode 100644
index 0000000000000000000000000000000000000000..e03a3d6d4d4f6c737e53dad11861f0b11d79fedc
--- /dev/null
+++ b/LayoutTests/inspector/console/console-timestamp.html
@@ -0,0 +1,39 @@
+<html>
+<head>
+<script src="../../http/tests/inspector/inspector-test.js"></script>
+<script src="../../http/tests/inspector/console-test.js"></script>
+<script>
+function test()
+{
+ function addMessageWithFixedTimestamp()
+ {
+ var message = new WebInspector.ConsoleMessage(
+ WebInspector.ConsoleMessage.MessageSource.Other,
+ WebInspector.ConsoleMessage.MessageLevel.Log,
+ "PASS",
+ undefined,
+ undefined,
+ undefined,
+ undefined,
+ undefined,
+ undefined,
+ undefined,
+ undefined,
+ 1400000000123 / 1000); // 2014-05-13T16:53:20.123Z
+ WebInspector.console.addMessage(message);
+ }
+
+ addMessageWithFixedTimestamp();
+ WebInspector.settings.consoleTimestampsEnabled.set(true);
+ addMessageWithFixedTimestamp();
+ InspectorTest.dumpConsoleMessages();
+ InspectorTest.completeTest();
+}
+</script>
+</head>
+<body onload="runTest()">
+<p>
+Tests the console timestamp setting
+</p>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698