| OLD | NEW |
| 1 | 1 |
| 2 // This file introduces / supplements and forces Dart declarations. | 2 // This file introduces / supplements and forces Dart declarations. |
| 3 | 3 |
| 4 module core { | 4 module core { |
| 5 [Supplemental] | 5 [Supplemental] |
| 6 interface Document { | 6 interface Document { |
| 7 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStr
ing name, in long width, in long height); | 7 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStr
ing name, in long width, in long height); |
| 8 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStr
ing name, in long width, in long height); | 8 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStr
ing name, in long width, in long height); |
| 9 }; | 9 }; |
| 10 }; | 10 }; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 module html { | 29 module html { |
| 30 [Supplemental] | 30 [Supplemental] |
| 31 interface Console { | 31 interface Console { |
| 32 [Suppressed] void assert(in boolean condition); | 32 [Suppressed] void assert(in boolean condition); |
| 33 [CallWith=ScriptArguments|CallStack] void assertCondition(boolean condition)
; | 33 [CallWith=ScriptArguments|CallStack] void assertCondition(boolean condition)
; |
| 34 }; | 34 }; |
| 35 | 35 |
| 36 interface HTMLCanvasElement { | 36 interface HTMLCanvasElement { |
| 37 [Suppressed] DOMString toDataURL([TreatNullAs=NullString, TreatUndefinedAs=N
ullString,Optional=DefaultIsUndefined] in DOMString type) raises(DOMException); | 37 [Suppressed] DOMString toDataURL([TreatNullAs=NullString, TreatUndefinedAs=N
ullString,Optional=DefaultIsUndefined] in DOMString type) raises(DOMException); |
| 38 [Custom] DOMString toDataURL([TreatNullAs=NullString, TreatUndefinedAs=NullS
tring,Optional=DefaultIsUndefined] in DOMString type, [Optional] in float qualit
y) raises(DOMException); | 38 [Custom] DOMString toDataURL([TreatNullAs=NullString, TreatUndefinedAs=NullS
tring,Optional=DefaultIsUndefined] in DOMString type, [Optional] in float qualit
y) raises(DOMException); |
| 39 | |
| 40 }; | 39 }; |
| 41 | 40 |
| 42 [Supplemental] | 41 [Supplemental] |
| 43 interface HTMLOptionsCollection { | 42 interface HTMLOptionsCollection { |
| 44 [Suppressed] void add([Optional] in HTMLOptionElement element, [Optional] in
long before); | 43 [Suppressed] void add([Optional] in HTMLOptionElement element, [Optional] in
long before); |
| 45 }; | 44 }; |
| 46 | 45 |
| 47 [Supplemental] | 46 [Supplemental] |
| 48 interface HTMLSelectElement { | 47 interface HTMLSelectElement { |
| 49 [Suppressed] void add([Optional=DefaultIsUndefined] in HTMLElement element,
[Optional=DefaultIsUndefined] in HTMLElement before); | 48 [Suppressed] void add([Optional=DefaultIsUndefined] in HTMLElement element,
[Optional=DefaultIsUndefined] in HTMLElement before); |
| (...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 [Custom] void send(Blob data) raises(DOMException); | 334 [Custom] void send(Blob data) raises(DOMException); |
| 336 [Custom] void send(ArrayBuffer data) raises(DOMException); | 335 [Custom] void send(ArrayBuffer data) raises(DOMException); |
| 337 [Custom] void send(ArrayBufferView data) raises(DOMException); | 336 [Custom] void send(ArrayBufferView data) raises(DOMException); |
| 338 }; | 337 }; |
| 339 } | 338 } |
| 340 | 339 |
| 341 module core { | 340 module core { |
| 342 [Suppressed] | 341 [Suppressed] |
| 343 interface Entity {}; | 342 interface Entity {}; |
| 344 } | 343 } |
| OLD | NEW |