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

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

Issue 149178: DevTools: Console tests. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 5 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <head>
3 <script type="text/javascript">
4
5 console.log('log');
6
7 console.debug('debug');
8
9 console.info('info');
10
11 console.warn('warn');
12
13 console.error('error');
14
15 console.log('Message format number %i, %d and %f', 1, 2, 3.5);
16
17 console.log('Message %s for %s', 'format', 'string');
18
19 console.log('Object %o', {'foo' : 'bar' });
20
21 for (var i = 0; i < 5; ++i) {
22 console.log('repeated');
23 }
24
25 for (var i = 0; i < 2; ++i) {
26 console.count('count');
27 }
28
29 console.group('group');
30 console.groupEnd();
31
32 console.time('timer');
33 console.timeEnd('timer');
34
35 </script>
36 </head>
37 <body>
38 </body>
39 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698