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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/tracing/timeline-time.html

Issue 2037593004: [DevTools] Remove unnecessary knowledge about console from core. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: one more test Created 4 years, 6 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/timeline-test.js"></script> 4 <script src="../../http/tests/inspector/timeline-test.js"></script>
5 <script> 5 <script>
6 6
7 testRunner.setDumpConsoleMessages(false);
8
7 function simpleConsoleTime() 9 function simpleConsoleTime()
8 { 10 {
9 console.time("a"); 11 console.time("a");
10 console.timeEnd("a"); 12 console.timeEnd("a");
11 } 13 }
12 14
13 function nestedConsoleTime() 15 function nestedConsoleTime()
14 { 16 {
15 console.time("a"); 17 console.time("a");
16 { 18 {
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 } 94 }
93 95
94 </script> 96 </script>
95 </head> 97 </head>
96 98
97 <body onload="runTest()"> 99 <body onload="runTest()">
98 <p>Test nesting of time/timeEnd records on Timeline</p> 100 <p>Test nesting of time/timeEnd records on Timeline</p>
99 101
100 </body> 102 </body>
101 </html> 103 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698