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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/console/console-log-before-inspector-open.html

Issue 2650543002: DevTools: render console level filter as drop box. (Closed)
Patch Set: rebase again Created 3 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 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 console.log('log'); 7 console.log('log');
8 console.debug('debug');
9 console.info('info'); 8 console.info('info');
10 console.warn('warn'); 9 console.warn('warn');
11 console.error('error'); 10 console.error('error');
12 11
13 function test() 12 function test()
14 { 13 {
15 InspectorTest.dumpConsoleMessages(); 14 InspectorTest.dumpConsoleMessages();
16 InspectorTest.completeTest(); 15 InspectorTest.completeTest();
17 } 16 }
18 17
19 </script> 18 </script>
20 </head> 19 </head>
21 20
22 <body onload="runTest()"> 21 <body onload="runTest()">
23 <p> 22 <p>
24 Tests that Web Inspector won't crash if some console have been logged by the tim e it's opening. 23 Tests that Web Inspector won't crash if some console have been logged by the tim e it's opening.
25 </p> 24 </p>
26 25
27 </body> 26 </body>
28 </html> 27 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698