| Index: third_party/WebKit/LayoutTests/imported/wpt/FileAPI/idlharness.idl
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/FileAPI/idlharness.idl b/third_party/WebKit/LayoutTests/imported/wpt/FileAPI/idlharness.idl
|
| index ae83a9cb1fd0037ac84acee50f3ac41d21b6dfb4..62e6c5d9f2195054c40f6df754c6944737e378d8 100644
|
| --- a/third_party/WebKit/LayoutTests/imported/wpt/FileAPI/idlharness.idl
|
| +++ b/third_party/WebKit/LayoutTests/imported/wpt/FileAPI/idlharness.idl
|
| @@ -79,3 +79,13 @@ partial interface URL {
|
| static void revokeObjectURL(DOMString url);
|
|
|
| };
|
| +
|
| +[Constructor, Exposed=Worker]
|
| +interface FileReaderSync {
|
| +
|
| + // Synchronously return strings
|
| +
|
| + ArrayBuffer readAsArrayBuffer(Blob blob);
|
| + DOMString readAsText(Blob blob, optional DOMString label);
|
| + DOMString readAsDataURL(Blob blob);
|
| +};
|
|
|