Chromium Code Reviews

Side by Side Diff: chrome/test/data/devtools/console_test_page.html

Issue 212047: DevTools: Add more console tests. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
« no previous file with comments | « chrome/browser/debugger/devtools_sanity_unittest.cc ('k') | webkit/glue/devtools/js/tests.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script type="text/javascript"> 3 <script type="text/javascript">
4 4
5 console.log('log'); 5 console.log('log');
6 6
7 console.debug('debug'); 7 console.debug('debug');
8 8
9 console.info('info'); 9 console.info('info');
10 10
(...skipping 14 matching lines...)
25 for (var i = 0; i < 2; ++i) { 25 for (var i = 0; i < 2; ++i) {
26 console.count('count'); 26 console.count('count');
27 } 27 }
28 28
29 console.group('group'); 29 console.group('group');
30 console.groupEnd(); 30 console.groupEnd();
31 31
32 console.time('timer'); 32 console.time('timer');
33 console.timeEnd('timer'); 33 console.timeEnd('timer');
34 34
35 console.log('1', '2', '3');
36
37 console.dir(document);
38
39 console.dirxml(document.documentElement);
40
35 </script> 41 </script>
36 </head> 42 </head>
37 <body> 43 <body>
38 </body> 44 </body>
39 </html> 45 </html>
OLDNEW
« no previous file with comments | « chrome/browser/debugger/devtools_sanity_unittest.cc ('k') | webkit/glue/devtools/js/tests.js » ('j') | no next file with comments »

Powered by Google App Engine