| Index: chrome/test/data/fileapi/common.js
|
| diff --git a/chrome/test/data/fileapi/common.js b/chrome/test/data/fileapi/common.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3fc52dfc954effcbd3e166b6a14b780dfe4e62b4
|
| --- /dev/null
|
| +++ b/chrome/test/data/fileapi/common.js
|
| @@ -0,0 +1,53 @@
|
| +// 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));
|
| +}
|
|
|