Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(165)

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/FileAPI/idlharness.idl

Issue 1984023002: Move web-platform-tests to wpt (part 1 of 2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 [Constructor, 1 [Constructor,
2 Constructor(sequence<(ArrayBuffer or ArrayBufferView or Blob or DOMString)> blo bParts, optional BlobPropertyBag options), Exposed=Window,Worker] 2 Constructor(sequence<(ArrayBuffer or ArrayBufferView or Blob or DOMString)> blo bParts, optional BlobPropertyBag options), Exposed=Window,Worker]
3 interface Blob { 3 interface Blob {
4 4
5 readonly attribute unsigned long long size; 5 readonly attribute unsigned long long size;
6 readonly attribute DOMString type; 6 readonly attribute DOMString type;
7 readonly attribute boolean isClosed; 7 readonly attribute boolean isClosed;
8 8
9 //slice Blob into byte-ranged chunks 9 //slice Blob into byte-ranged chunks
10 10
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 72
73 }; 73 };
74 74
75 partial interface URL { 75 partial interface URL {
76 76
77 static DOMString createObjectURL(Blob blob); 77 static DOMString createObjectURL(Blob blob);
78 static DOMString createFor(Blob blob); 78 static DOMString createFor(Blob blob);
79 static void revokeObjectURL(DOMString url); 79 static void revokeObjectURL(DOMString url);
80 80
81 }; 81 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698