Chromium Code Reviews

Unified Diff: Source/WebCore/fileapi/Blob.idl

Issue 14244017: Make length property return useful values for DOM bindings functions (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Make length property return useful values for DOM bindings functions and interfaces Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: Source/WebCore/fileapi/Blob.idl
diff --git a/Source/WebCore/fileapi/Blob.idl b/Source/WebCore/fileapi/Blob.idl
index 4ac641ba7214fa510405acc641d8938037523a06..85be0bb12c8f74444e5fcba5c7b0c9441998d50f 100644
--- a/Source/WebCore/fileapi/Blob.idl
+++ b/Source/WebCore/fileapi/Blob.idl
@@ -30,7 +30,8 @@
[
CustomToJSObject,
- CustomConstructor
+ CustomConstructor,
+ CustomConstructor(sequence<any> blobParts, [Optional] BlobPropertyBag options)
] interface Blob {
readonly attribute unsigned long long size;
readonly attribute DOMString type;

Powered by Google App Engine