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

Unified 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/devtools/console_test_page.html
diff --git a/chrome/test/data/devtools/console_test_page.html b/chrome/test/data/devtools/console_test_page.html
deleted file mode 100644
index 8b54aa8912b65acbde4787f987a023cafde59718..0000000000000000000000000000000000000000
--- a/chrome/test/data/devtools/console_test_page.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<html>
-<head>
-<script type="text/javascript">
-
-console.log('log');
-
-console.debug('debug');
-
-console.info('info');
-
-console.warn('warn');
-
-console.error('error');
-
-console.log('Message format number %i, %d and %f', 1, 2, 3.5);
-
-console.log('Message %s for %s', 'format', 'string');
-
-console.log('Object %o', {'foo' : 'bar' });
-
-for (var i = 0; i < 5; ++i) {
- console.log('repeated');
-}
-
-for (var i = 0; i < 2; ++i) {
- console.count('count');
-}
-
-console.group('group');
-console.groupEnd();
-
-console.time('timer');
-console.timeEnd('timer');
-
-console.log('1', '2', '3');
-
-console.dir(document);
-
-console.dirxml(document.documentElement);
-
-</script>
-</head>
-<body>
-</body>
-</html>
« 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