OLD | NEW |
1 // This file introduces / supplements and forces Dart declarations. | 1 // This file introduces / supplements and forces Dart declarations. |
2 | 2 |
3 [Supplemental, | 3 [Supplemental, |
4 Constructor] | 4 Constructor] |
5 interface AudioContext {}; | 5 interface AudioContext {}; |
6 | 6 |
7 [Supplemental] | 7 [Supplemental] |
8 interface Document { | 8 interface Document { |
9 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStrin
g name, in long width, in long height); | 9 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStrin
g name, in long width, in long height); |
10 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStrin
g name, in long width, in long height); | 10 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStrin
g name, in long width, in long height); |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 [Supplemental] | 54 [Supplemental] |
55 interface HTMLSelectElement { | 55 interface HTMLSelectElement { |
56 [Suppressed] void add([Optional=DefaultIsUndefined] in HTMLElement element, [O
ptional=DefaultIsUndefined] in HTMLElement before); | 56 [Suppressed] void add([Optional=DefaultIsUndefined] in HTMLElement element, [O
ptional=DefaultIsUndefined] in HTMLElement before); |
57 [Suppressed, Custom] void remove(); | 57 [Suppressed, Custom] void remove(); |
58 [Custom] void remove(in long index); | 58 [Custom] void remove(in long index); |
59 [Custom] void remove(in HTMLOptionElement option); | 59 [Custom] void remove(in HTMLOptionElement option); |
60 }; | 60 }; |
61 | 61 |
62 [Supplemental] | 62 [Supplemental] |
63 interface ImageData { | 63 interface ImageData { |
64 readonly attribute Uint8ClampedArray data; | 64 [Custom] readonly attribute int[] data; |
65 }; | 65 }; |
66 | 66 |
67 [Supplemental] | 67 [Supplemental] |
68 interface HTMLMediaElement { | 68 interface HTMLMediaElement { |
69 // Adding media events. | 69 // Adding media events. |
70 attribute EventListener oncanplay; | 70 attribute EventListener oncanplay; |
71 attribute EventListener oncanplaythrough; | 71 attribute EventListener oncanplaythrough; |
72 attribute EventListener ondurationchange; | 72 attribute EventListener ondurationchange; |
73 attribute EventListener onemptied; | 73 attribute EventListener onemptied; |
74 attribute EventListener onended; | 74 attribute EventListener onended; |
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
337 [Suppressed] boolean send(in DOMString data) raises(DOMException); | 337 [Suppressed] boolean send(in DOMString data) raises(DOMException); |
338 | 338 |
339 [Custom] void send(DOMString data) raises(DOMException); | 339 [Custom] void send(DOMString data) raises(DOMException); |
340 [Custom] void send(Blob data) raises(DOMException); | 340 [Custom] void send(Blob data) raises(DOMException); |
341 [Custom] void send(ArrayBuffer data) raises(DOMException); | 341 [Custom] void send(ArrayBuffer data) raises(DOMException); |
342 [Custom] void send(ArrayBufferView data) raises(DOMException); | 342 [Custom] void send(ArrayBufferView data) raises(DOMException); |
343 }; | 343 }; |
344 | 344 |
345 [Suppressed] | 345 [Suppressed] |
346 interface Entity {}; | 346 interface Entity {}; |
OLD | NEW |