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

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

Issue 6295010: DevTools: re-enable devtools tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed obsolete test data. Created 9 years, 11 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 console.log('1', '2', '3');
36
37 console.dir(document);
38
39 console.dirxml(document.documentElement);
40
41 </script>
42 </head>
43 <body>
44 </body>
45 </html>
OLDNEW
« no previous file with comments | « chrome/test/data/devtools/completion_on_pause.html ('k') | chrome/test/data/devtools/image.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698