summaryrefslogtreecommitdiffstats
path: root/WebCore/fileapi/FileReader.idl
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/fileapi/FileReader.idl')
-rw-r--r--WebCore/fileapi/FileReader.idl3
1 files changed, 2 insertions, 1 deletions
diff --git a/WebCore/fileapi/FileReader.idl b/WebCore/fileapi/FileReader.idl
index febb231..ebc6ffd 100644
--- a/WebCore/fileapi/FileReader.idl
+++ b/WebCore/fileapi/FileReader.idl
@@ -44,6 +44,7 @@ module html {
readonly attribute unsigned short readyState;
// async read methods
+ void readAsArrayBuffer(in Blob blob);
void readAsBinaryString(in Blob blob);
void readAsText(in Blob blob, in [Optional] DOMString encoding);
void readAsDataURL(in Blob blob);
@@ -51,7 +52,7 @@ module html {
void abort();
// file data
- readonly attribute [ConvertScriptString] DOMString result;
+ readonly attribute [Custom] DOMObject result;
readonly attribute FileError error;