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

Unified Diff: chrome/test/data/fileapi/common.js

Issue 10831023: Move over a bunch of tests from browser_tests to content_browsertests. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/fileapi/common.js
===================================================================
--- chrome/test/data/fileapi/common.js (revision 148472)
+++ chrome/test/data/fileapi/common.js (working copy)
@@ -1,53 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-function debug(message)
-{
- document.getElementById('status').innerHTML += '<br/>' + message;
-}
-
-function done(message)
-{
- if (document.location.hash == '#fail')
- return;
- if (message)
- debug('PASS: ' + message);
- else
- debug('PASS');
- document.location.hash = '#pass';
-}
-
-function fail(message)
-{
- debug('FAILED: ' + message);
- document.location.hash = '#fail';
-}
-
-function getLog()
-{
- return '' + document.getElementById('status').innerHTML;
-}
-
-function fileErrorToString(e)
-{
- switch (e.code) {
- case FileError.QUOTA_EXCEEDED_ERR:
- return 'QUOTA_EXCEEDED_ERR';
- case FileError.NOT_FOUND_ERR:
- return 'NOT_FOUND_ERR';
- case FileError.SECURITY_ERR:
- return 'SECURITY_ERR';
- case FileError.INVALID_MODIFICATION_ERR:
- return 'INVALID_MODIFICATION_ERR';
- case FileError.INVALID_STATE_ERR:
- return 'INVALID_STATE_ERR';
- default:
- return 'Unknown Error';
- }
-}
-
-function unexpectedErrorCallback(e)
-{
- fail('unexpectedErrorCallback:' + fileErrorToString(e));
-}
« no previous file with comments | « chrome/test/data/device_orientation/device_orientation_test.html ('k') | chrome/test/data/fileapi/create_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698