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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/tracing/console-timeline.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/console-test.js"></script> 4 <script src="../../http/tests/inspector/console-test.js"></script>
5 <script src="../../http/tests/inspector/timeline-test.js"></script> 5 <script src="../../http/tests/inspector/timeline-test.js"></script>
6 <script> 6 <script>
7 7
8 testRunner.setDumpConsoleMessages(false);
9
8 function startStopTimeline() 10 function startStopTimeline()
9 { 11 {
10 console.timeStamp("timestamp 0"); 12 console.timeStamp("timestamp 0");
11 console.timeline("one"); 13 console.timeline("one");
12 console.timeStamp("timestamp 1"); 14 console.timeStamp("timestamp 1");
13 console.timelineEnd("one"); 15 console.timelineEnd("one");
14 console.timeStamp("timestamp 2"); 16 console.timeStamp("timestamp 2");
15 } 17 }
16 18
17 function startStopMultiple() 19 function startStopMultiple()
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 </script> 190 </script>
189 </head> 191 </head>
190 192
191 <body onload="runTest()"> 193 <body onload="runTest()">
192 <p> 194 <p>
193 Tests console.timeline and timelineEnd commands. 195 Tests console.timeline and timelineEnd commands.
194 </p> 196 </p>
195 197
196 </body> 198 </body>
197 </html> 199 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698