summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/filesystem/resources/simple-required-arguments-getmetadata.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/resources/simple-required-arguments-getmetadata.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/resources/simple-required-arguments-getmetadata.js')
-rw-r--r--third_party/WebKit/LayoutTests/fast/filesystem/resources/simple-required-arguments-getmetadata.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/WebKit/LayoutTests/fast/filesystem/resources/simple-required-arguments-getmetadata.js b/third_party/WebKit/LayoutTests/fast/filesystem/resources/simple-required-arguments-getmetadata.js
index 1c6affd..df0d036 100644
--- a/third_party/WebKit/LayoutTests/fast/filesystem/resources/simple-required-arguments-getmetadata.js
+++ b/third_party/WebKit/LayoutTests/fast/filesystem/resources/simple-required-arguments-getmetadata.js
@@ -9,7 +9,7 @@ description("DirectoryEntry.getMetadata required arguments test.");
var fileSystem = null;
function errorCallback(error) {
- debug("Error occured while requesting a TEMPORARY file system:" + error.code);
+ debug("Error occured while requesting a TEMPORARY file system:" + error.name);
finishJSTest();
}