| 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 14 matching lines...) Expand all Loading... |
| 25 [Supplemental] | 25 [Supplemental] |
| 26 interface Clipboard { | 26 interface Clipboard { |
| 27 [Suppressed] void setDragImage(HTMLImageElement image, long x, long y); | 27 [Suppressed] void setDragImage(HTMLImageElement image, long x, long y); |
| 28 [Custom] void setDragImage(Element element, long x, long y); | 28 [Custom] void setDragImage(Element element, long x, long y); |
| 29 }; | 29 }; |
| 30 | 30 |
| 31 [Supplemental] | 31 [Supplemental] |
| 32 interface Document { | 32 interface Document { |
| 33 [Suppressed] DOMObject getCSSCanvasContext(DOMString contextId, DOMString name
, long width, long height); | 33 [Suppressed] DOMObject getCSSCanvasContext(DOMString contextId, DOMString name
, long width, long height); |
| 34 CanvasRenderingContext getCSSCanvasContext(DOMString contextId, DOMString name
, long width, long height); | 34 CanvasRenderingContext getCSSCanvasContext(DOMString contextId, DOMString name
, long width, long height); |
| 35 [Custom] Element createElement(DOMString tagName); | |
| 36 [Custom] Element createElement(DOMString localName, DOMString typeExtension); | |
| 37 [Custom] Element createElementNS(DOMString namespaceURI, DOMString qualifiedNa
me); | |
| 38 [Custom] Element createElementNS(DOMString namespaceURI, DOMString qualifiedNa
me, DOMString typeExtension); | |
| 39 }; | 35 }; |
| 40 | 36 |
| 41 [Supplemental] | 37 [Supplemental] |
| 42 interface Node { | 38 interface Node { |
| 43 Node cloneNode([Default=Undefined] optional boolean deep); | 39 Node cloneNode([Default=Undefined] optional boolean deep); |
| 44 }; | 40 }; |
| 45 | 41 |
| 46 [Supplemental] | 42 [Supplemental] |
| 47 interface ScriptProcessorNode { | 43 interface ScriptProcessorNode { |
| 48 [Suppressed] attribute EventListener onaudioprocess; | 44 [Suppressed] attribute EventListener onaudioprocess; |
| (...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 // TextEncoder/TextDecoder | 340 // TextEncoder/TextDecoder |
| 345 [Suppressed] | 341 [Suppressed] |
| 346 interface TextEncoder {}; | 342 interface TextEncoder {}; |
| 347 | 343 |
| 348 [Suppressed] | 344 [Suppressed] |
| 349 interface TextDecoder {}; | 345 interface TextDecoder {}; |
| 350 | 346 |
| 351 [Supplemental] | 347 [Supplemental] |
| 352 interface Window : EventTarget {}; | 348 interface Window : EventTarget {}; |
| 353 | 349 |
| OLD | NEW |