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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/console/console-timestamp.html

Issue 2751173003: [DevTools] Turn ConsoleModel into a singleton (Closed)
Patch Set: rebased Created 3 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 unified diff | Download patch
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../../http/tests/inspector/inspector-test.js"></script> 3 <script src="../../http/tests/inspector/inspector-test.js"></script>
4 <script src="../../http/tests/inspector/console-test.js"></script> 4 <script src="../../http/tests/inspector/console-test.js"></script>
5 <script> 5 <script>
6 function test() 6 function test()
7 { 7 {
8 // It is essential that we calculate timezone for this particular moment of time 8 // It is essential that we calculate timezone for this particular moment of time
9 // otherwise the time zone offset could be different because of DST. 9 // otherwise the time zone offset could be different because of DST.
10 var baseDate = Date.parse("2014-05-13T16:53:20.123Z"); 10 var baseDate = Date.parse("2014-05-13T16:53:20.123Z");
11 var tzOffset = new Date(baseDate).getTimezoneOffset() * 60 * 1000; 11 var tzOffset = new Date(baseDate).getTimezoneOffset() * 60 * 1000;
12 var baseTimestamp = 1400000000000 + tzOffset; 12 var baseTimestamp = 1400000000000 + tzOffset;
13 13
14 function addMessageWithFixedTimestamp(messageText, timestamp) 14 function addMessageWithFixedTimestamp(messageText, timestamp)
15 { 15 {
16 var message = new SDK.ConsoleMessage( 16 var message = new SDK.ConsoleMessage(
17 InspectorTest.consoleModel.target(), 17 InspectorTest.mainTarget,
18 SDK.ConsoleMessage.MessageSource.Other, // source 18 SDK.ConsoleMessage.MessageSource.Other, // source
19 SDK.ConsoleMessage.MessageLevel.Info, // level 19 SDK.ConsoleMessage.MessageLevel.Info, // level
20 messageText, 20 messageText,
21 undefined, // type 21 undefined, // type
22 undefined, // url 22 undefined, // url
23 undefined, // line 23 undefined, // line
24 undefined, // column 24 undefined, // column
25 undefined, // requestId 25 undefined, // requestId
26 undefined, // parameters 26 undefined, // parameters
27 undefined, // stackTrace 27 undefined, // stackTrace
(...skipping 22 matching lines...) Expand all
50 InspectorTest.completeTest(); 50 InspectorTest.completeTest();
51 } 51 }
52 </script> 52 </script>
53 </head> 53 </head>
54 <body onload="runTest()"> 54 <body onload="runTest()">
55 <p> 55 <p>
56 Tests the console timestamp setting. 56 Tests the console timestamp setting.
57 </p> 57 </p>
58 </body> 58 </body>
59 </html> 59 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698