mirror of
https://github.com/servo/servo.git
synced 2025-08-05 21:50:18 +01:00
Implement Blob methods (text/arraybuffer) and async file read method
This commit is contained in:
parent
1b7223a284
commit
9859410193
8 changed files with 188 additions and 115 deletions
|
@ -16,6 +16,9 @@ interface Blob {
|
|||
Blob slice(optional [Clamp] long long start,
|
||||
optional [Clamp] long long end,
|
||||
optional DOMString contentType);
|
||||
|
||||
[NewObject] Promise<DOMString> text();
|
||||
[NewObject] Promise<ArrayBuffer> arrayBuffer();
|
||||
};
|
||||
|
||||
dictionary BlobPropertyBag {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue