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

Side by Side Diff: lib/html/idl/dart/dart.idl

Issue 10913125: Remove lib/dom directory! (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 3 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 | Annotate | Revision Log
OLDNEW
1 1
2 // This file introduces / supplements and forces Dart declarations. 2 // This file introduces / supplements and forces Dart declarations.
3 3
4 module default { 4 module default {
5 FileList implements sequence<File>; 5 FileList implements sequence<File>;
6 HTMLCollection implements sequence<Node>; 6 HTMLCollection implements sequence<Node>;
7 MediaList implements sequence<DOMString>; 7 MediaList implements sequence<DOMString>;
8 NamedNodeMap implements sequence<Node>; 8 NamedNodeMap implements sequence<Node>;
9 NodeList implements sequence<Node>; 9 NodeList implements sequence<Node>;
10 StyleSheetList implements sequence<StyleSheet>; 10 StyleSheetList implements sequence<StyleSheet>;
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 [Custom] DOMString toDataURL([TreatNullAs=NullString, TreatUndefinedAs=NullS tring,Optional=DefaultIsUndefined] in DOMString type, [Optional] in float qualit y) raises(DOMException); 62 [Custom] DOMString toDataURL([TreatNullAs=NullString, TreatUndefinedAs=NullS tring,Optional=DefaultIsUndefined] in DOMString type, [Optional] in float qualit y) raises(DOMException);
63 63
64 }; 64 };
65 65
66 [Supplemental] 66 [Supplemental]
67 interface HTMLOptionsCollection { 67 interface HTMLOptionsCollection {
68 [Suppressed] void add([Optional] in HTMLOptionElement element, [Optional] in long before); 68 [Suppressed] void add([Optional] in HTMLOptionElement element, [Optional] in long before);
69 }; 69 };
70 70
71 [Supplemental] 71 [Supplemental]
72 interface HTMLSelectElement {
73 [Suppressed] void add([Optional=DefaultIsUndefined] in HTMLElement element, [Optional=DefaultIsUndefined] in HTMLElement before);
74 };
75
76 [Supplemental]
72 interface ImageData { 77 interface ImageData {
73 readonly attribute Uint8ClampedArray data; 78 readonly attribute Uint8ClampedArray data;
74 }; 79 };
75 80
76 [Supplemental] 81 [Supplemental]
77 interface HTMLMediaElement { 82 interface HTMLMediaElement {
78 // Adding media events. 83 // Adding media events.
79 attribute EventListener oncanplay; 84 attribute EventListener oncanplay;
80 attribute EventListener oncanplaythrough; 85 attribute EventListener oncanplaythrough;
81 attribute EventListener ondurationchange; 86 attribute EventListener ondurationchange;
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 // Suppress the default since it has non-standard return type and add 340 // Suppress the default since it has non-standard return type and add
336 // overrides. 341 // overrides.
337 [Suppressed] boolean send(in DOMString data) raises(DOMException); 342 [Suppressed] boolean send(in DOMString data) raises(DOMException);
338 [Custom] void send(DOMString data) raises(DOMException); 343 [Custom] void send(DOMString data) raises(DOMException);
339 [Custom] void send(Blob data) raises(DOMException); 344 [Custom] void send(Blob data) raises(DOMException);
340 [Custom] void send(ArrayBuffer data) raises(DOMException); 345 [Custom] void send(ArrayBuffer data) raises(DOMException);
341 [Custom] void send(ArrayBufferView data) raises(DOMException); 346 [Custom] void send(ArrayBufferView data) raises(DOMException);
342 }; 347 };
343 } 348 }
344 349
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698