| 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 // TODO(ager): Auto-generate this custom method when the info about retaining | 6 // TODO(ager): Auto-generate this custom method when the info about retaining |
| 7 // typed arrays is in the IDL. | 7 // typed arrays is in the IDL. |
| 8 [Custom] void decodeAudioData(ArrayBuffer audioData, AudioBufferCallback succe
ssCallback, AudioBufferCallback errorCallback); | 8 [Custom] void decodeAudioData(ArrayBuffer audioData, AudioBufferCallback succe
ssCallback, AudioBufferCallback errorCallback); |
| 9 }; | 9 }; |
| 10 | 10 |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 [Suppressed] DOMString toDataURL([TreatNullAs=NullString, TreatUndefinedAs=Nul
lString,Default=Undefined] DOMString type); | 85 [Suppressed] DOMString toDataURL([TreatNullAs=NullString, TreatUndefinedAs=Nul
lString,Default=Undefined] DOMString type); |
| 86 [Custom] DOMString toDataURL([TreatNullAs=NullString, TreatUndefinedAs=NullStr
ing,Default=Undefined] DOMString type, optional float quality); | 86 [Custom] DOMString toDataURL([TreatNullAs=NullString, TreatUndefinedAs=NullStr
ing,Default=Undefined] DOMString type, optional float quality); |
| 87 | 87 |
| 88 [Suppressed] any getContext(DOMString contextId); | 88 [Suppressed] any getContext(DOMString contextId); |
| 89 [Custom] CanvasRenderingContext getContext(DOMString contextId, optional Dicti
onary attrs); | 89 [Custom] CanvasRenderingContext getContext(DOMString contextId, optional Dicti
onary attrs); |
| 90 }; | 90 }; |
| 91 | 91 |
| 92 [Supplemental] | 92 [Supplemental] |
| 93 interface HTMLOptionsCollection { | 93 interface HTMLOptionsCollection { |
| 94 [Suppressed] void add(optional HTMLOptionElement element, optional long before
); | 94 [Suppressed] void add(optional HTMLOptionElement element, optional long before
); |
| 95 [Suppressed] void remove(HTMLOptionElement option); // Non standard. |
| 95 }; | 96 }; |
| 96 | 97 |
| 97 [Supplemental] | 98 [Supplemental] |
| 98 interface HTMLSelectElement { | 99 interface HTMLSelectElement { |
| 99 [Suppressed] void add([Default=Undefined] HTMLElement element, [Default=Undefi
ned] HTMLElement before); | 100 [Suppressed] void add([Default=Undefined] HTMLElement element, [Default=Undefi
ned] HTMLElement before); |
| 100 [Suppressed, Custom] void remove(); | 101 [Suppressed, Custom] void remove(); |
| 102 [Suppressed] void remove(long index); |
| 103 [Suppressed] void remove(HTMLOptionElement option); // Non standard. |
| 101 }; | 104 }; |
| 102 | 105 |
| 103 [Supplemental] | 106 [Supplemental] |
| 104 interface ImageData { | 107 interface ImageData { |
| 105 [Custom] readonly attribute int[] data; | 108 [Custom] readonly attribute int[] data; |
| 106 }; | 109 }; |
| 107 | 110 |
| 108 [Supplemental] | 111 [Supplemental] |
| 109 interface HTMLMediaElement { | 112 interface HTMLMediaElement { |
| 110 // Adding media events. | 113 // Adding media events. |
| (...skipping 14 matching lines...) Expand all Loading... |
| 125 attribute EventListener onseeking; | 128 attribute EventListener onseeking; |
| 126 attribute EventListener onshow; | 129 attribute EventListener onshow; |
| 127 attribute EventListener onstalled; | 130 attribute EventListener onstalled; |
| 128 attribute EventListener onsuspend; | 131 attribute EventListener onsuspend; |
| 129 attribute EventListener ontimeupdate; | 132 attribute EventListener ontimeupdate; |
| 130 attribute EventListener onvolumechange; | 133 attribute EventListener onvolumechange; |
| 131 attribute EventListener onwaiting; | 134 attribute EventListener onwaiting; |
| 132 }; | 135 }; |
| 133 | 136 |
| 134 [Supplemental] | 137 [Supplemental] |
| 138 interface RTCPeerConnection { |
| 139 [Suppressed, RaisesException] void addIceCandidate(RTCIceCandidate candidate); |
| 140 }; |
| 141 |
| 142 [Supplemental] |
| 135 interface WebGLContextEvent { | 143 interface WebGLContextEvent { |
| 136 [Suppressed] void initEvent(optional DOMString eventTypeArg, | 144 [Suppressed] void initEvent(optional DOMString eventTypeArg, |
| 137 optional boolean canBubbleArg, | 145 optional boolean canBubbleArg, |
| 138 optional boolean cancelableArg, | 146 optional boolean cancelableArg, |
| 139 optional DOMString statusMessageArg); | 147 optional DOMString statusMessageArg); |
| 140 }; | 148 }; |
| 141 | 149 |
| 142 [Supplemental] | 150 [Supplemental] |
| 143 interface WebGLRenderingContext { | 151 interface WebGLRenderingContext { |
| 144 | 152 |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 // TextEncoder/TextDecoder | 352 // TextEncoder/TextDecoder |
| 345 [Suppressed] | 353 [Suppressed] |
| 346 interface TextEncoder {}; | 354 interface TextEncoder {}; |
| 347 | 355 |
| 348 [Suppressed] | 356 [Suppressed] |
| 349 interface TextDecoder {}; | 357 interface TextDecoder {}; |
| 350 | 358 |
| 351 [Supplemental] | 359 [Supplemental] |
| 352 interface Window : EventTarget {}; | 360 interface Window : EventTarget {}; |
| 353 | 361 |
| OLD | NEW |