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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/console/console-tests.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 function onload() 7 function onload()
8 { 8 {
9 console.log('log'); 9 console.log('log');
10 console.debug('debug'); 10 console.debug('debug');
(...skipping 24 matching lines...) Expand all
35 console.count(); 35 console.count();
36 console.count("title"); 36 console.count("title");
37 console.count("title"); 37 console.count("title");
38 console.count("title"); 38 console.count("title");
39 39
40 runTest(); 40 runTest();
41 } 41 }
42 42
43 function test() 43 function test()
44 { 44 {
45 Common.settings.settingForTest('messageLevelFilters2').set(SDK.ConsoleMessag e.MessageLevel.Verbose);
45 InspectorTest.dumpConsoleMessagesWithClasses(); 46 InspectorTest.dumpConsoleMessagesWithClasses();
46 InspectorTest.completeTest(); 47 InspectorTest.completeTest();
47 } 48 }
48 </script> 49 </script>
49 </head> 50 </head>
50 51
51 <body onload="onload()"> 52 <body onload="onload()">
52 <p> 53 <p>
53 Tests that console logging dumps proper messages. 54 Tests that console logging dumps proper messages.
54 </p> 55 </p>
55 56
56 </body> 57 </body>
57 </html> 58 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698