| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 | 47 |
| 48 [Supplemental] | 48 [Supplemental] |
| 49 interface HTMLOptionsCollection { | 49 interface HTMLOptionsCollection { |
| 50 [Suppressed] void add([Optional] in HTMLOptionElement element, [Optional] in l
ong before); | 50 [Suppressed] void add([Optional] in HTMLOptionElement element, [Optional] in l
ong before); |
| 51 }; | 51 }; |
| 52 | 52 |
| 53 [Supplemental] | 53 [Supplemental] |
| 54 interface HTMLSelectElement { | 54 interface HTMLSelectElement { |
| 55 [Suppressed] void add([Optional=DefaultIsUndefined] in HTMLElement element, [O
ptional=DefaultIsUndefined] in HTMLElement before); | 55 [Suppressed] void add([Optional=DefaultIsUndefined] in HTMLElement element, [O
ptional=DefaultIsUndefined] in HTMLElement before); |
| 56 [Suppressed, Custom] void remove(); | 56 [Suppressed, Custom] void remove(); |
| 57 [Custom] void remove(in long index); | |
| 58 [Custom] void remove(in HTMLOptionElement option); | |
| 59 }; | 57 }; |
| 60 | 58 |
| 61 [Supplemental] | 59 [Supplemental] |
| 62 interface ImageData { | 60 interface ImageData { |
| 63 [Custom] readonly attribute int[] data; | 61 [Custom] readonly attribute int[] data; |
| 64 }; | 62 }; |
| 65 | 63 |
| 66 [Supplemental] | 64 [Supplemental] |
| 67 interface HTMLMediaElement { | 65 interface HTMLMediaElement { |
| 68 // Adding media events. | 66 // Adding media events. |
| (...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 raises(DOMException); | 353 raises(DOMException); |
| 356 [Custom] void send([StrictTypeChecking] in DOMString data) | 354 [Custom] void send([StrictTypeChecking] in DOMString data) |
| 357 raises(DOMException); | 355 raises(DOMException); |
| 358 [Custom] void send(in DOMFormData data) | 356 [Custom] void send(in DOMFormData data) |
| 359 raises(DOMException); | 357 raises(DOMException); |
| 360 }; | 358 }; |
| 361 | 359 |
| 362 | 360 |
| 363 [Suppressed] | 361 [Suppressed] |
| 364 interface Entity {}; | 362 interface Entity {}; |
| OLD | NEW |