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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/console/console-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/console-test.js"></script> 4 <script src="../../http/tests/inspector/console-test.js"></script>
5 <script> 5 <script>
6 6
7 testRunner.setDumpConsoleMessages(false);
8
7 function testFunction() 9 function testFunction()
8 { 10 {
9 console.time(); 11 console.time();
10 console.timeEnd(); 12 console.timeEnd();
11 console.time("42"); 13 console.time("42");
12 console.timeEnd("42"); 14 console.timeEnd("42");
13 console.time(239) 15 console.time(239)
14 console.timeEnd(239); 16 console.timeEnd(239);
15 console.time({}); 17 console.time({});
16 console.timeEnd({}); 18 console.timeEnd({});
(...skipping 13 matching lines...) Expand all
30 } 32 }
31 } 33 }
32 </script> 34 </script>
33 </head> 35 </head>
34 <body onload="runTest()"> 36 <body onload="runTest()">
35 <p> 37 <p>
36 console.time / console.timeEnd tests. 38 console.time / console.timeEnd tests.
37 </p> 39 </p>
38 </body> 40 </body>
39 </html> 41 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698