mirror of
https://github.com/servo/servo.git
synced 2025-08-11 08:25:32 +01:00
Remove support for Blob::{close, isClosed}
This commit is contained in:
parent
050d9d9097
commit
44e05e224c
5 changed files with 5 additions and 59 deletions
|
@ -11,21 +11,15 @@ interface Blob {
|
|||
|
||||
readonly attribute unsigned long long size;
|
||||
readonly attribute DOMString type;
|
||||
readonly attribute boolean isClosed;
|
||||
|
||||
//slice Blob into byte-ranged chunks
|
||||
|
||||
// slice Blob into byte-ranged chunks
|
||||
Blob slice([Clamp] optional long long start,
|
||||
[Clamp] optional long long end,
|
||||
optional DOMString contentType);
|
||||
void close();
|
||||
|
||||
};
|
||||
|
||||
dictionary BlobPropertyBag {
|
||||
|
||||
DOMString type = "";
|
||||
|
||||
};
|
||||
|
||||
typedef (/*ArrayBuffer or ArrayBufferView or */Blob or DOMString) BlobPart;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue