Index: core/fileapi/FileReader.idl |
diff --git a/core/fileapi/FileReader.idl b/core/fileapi/FileReader.idl |
index eb26da75f9c5e531afa329ff046b29e73ee6682d..6faaffff29e5b5ddc9f93d99305d7bba4b56db39 100644 |
--- a/core/fileapi/FileReader.idl |
+++ b/core/fileapi/FileReader.idl |
@@ -30,10 +30,10 @@ |
*/ |
[ |
- GlobalContext=Window&WorkerGlobalScope, |
ActiveDOMObject, |
Constructor, |
- ConstructorCallWith=ExecutionContext |
+ ConstructorCallWith=ExecutionContext, |
+ GlobalContext=Window&WorkerGlobalScope, |
] interface FileReader : EventTarget { |
// ready states |
const unsigned short EMPTY = 0; |
@@ -50,7 +50,7 @@ |
void abort(); |
// file data |
- [CustomGetter] readonly attribute any result; |
+ [Custom=Getter] readonly attribute object result; |
readonly attribute FileError error; |