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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/console/console-tests.html

Issue 2751193003: [DevTools] Move ConsoleModel to it's own module (Closed)
Patch Set: Created 3 years, 9 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 Common.settings.settingForTest('messageLevelFilters2').set(ConsoleModel.Cons oleMessage.MessageLevel.Verbose);
46 InspectorTest.dumpConsoleMessagesWithClasses(); 46 InspectorTest.dumpConsoleMessagesWithClasses();
47 InspectorTest.completeTest(); 47 InspectorTest.completeTest();
48 } 48 }
49 </script> 49 </script>
50 </head> 50 </head>
51 51
52 <body onload="onload()"> 52 <body onload="onload()">
53 <p> 53 <p>
54 Tests that console logging dumps proper messages. 54 Tests that console logging dumps proper messages.
55 </p> 55 </p>
56 56
57 </body> 57 </body>
58 </html> 58 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698