summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/filesystem/script-tests/flags-passing.js
diff options
context:
space:
mode:
authorkinuko@chromium.org <kinuko@chromium.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538>2013-08-22 16:03:28 +0000
committerkinuko@chromium.org <kinuko@chromium.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538>2013-08-22 16:03:28 +0000
commita82b603ad588b1be00b7f1d3365af1caa425f9bb (patch)
treef0ab2ab636e8305b5a844625684352048c042156 /third_party/WebKit/LayoutTests/fast/filesystem/script-tests/flags-passing.js
parent449f42d4ba65e02daa080be994b44a43713b5b7b (diff)
downloadchromium_src-a82b603ad588b1be00b7f1d3365af1caa425f9bb.zip
chromium_src-a82b603ad588b1be00b7f1d3365af1caa425f9bb.tar.gz
chromium_src-a82b603ad588b1be00b7f1d3365af1caa425f9bb.tar.bz2
Deprecate FileError in FileAPI
Apps should expect DOMError instead. This change breaks existing apps, so I kept FileError in this CL but made it inherit from DOMError and marked '.code' attribute deprecated. BUG=276861 TEST=fast/files/*,fast/filesystem/* Review URL: https://chromiumcodereview.appspot.com/22831019 git-svn-id: svn://svn.chromium.org/blink/trunk@156562 bbb929c8-8fbe-4397-9dbb-9b2b20218538
Diffstat (limited to 'third_party/WebKit/LayoutTests/fast/filesystem/script-tests/flags-passing.js')
-rw-r--r--third_party/WebKit/LayoutTests/fast/filesystem/script-tests/flags-passing.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/WebKit/LayoutTests/fast/filesystem/script-tests/flags-passing.js b/third_party/WebKit/LayoutTests/fast/filesystem/script-tests/flags-passing.js
index 92e0c49..0c0755f 100644
--- a/third_party/WebKit/LayoutTests/fast/filesystem/script-tests/flags-passing.js
+++ b/third_party/WebKit/LayoutTests/fast/filesystem/script-tests/flags-passing.js
@@ -28,7 +28,7 @@ function runNextTest(v) {
}
function errorCallback(error) {
- debug("Error occured during requesting Temporary FileSystem:" + error.code);
+ debug("Error occured during requesting Temporary FileSystem:" + error.name);
finishJSTest();
}