| 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); |
| 35 }; | 39 }; |
| 36 | 40 |
| 37 [Supplemental] | 41 [Supplemental] |
| 38 interface Node { | 42 interface Node { |
| 39 Node cloneNode([Default=Undefined] optional boolean deep); | 43 Node cloneNode([Default=Undefined] optional boolean deep); |
| 40 }; | 44 }; |
| 41 | 45 |
| 42 [Supplemental] | 46 [Supplemental] |
| 43 interface ScriptProcessorNode { | 47 interface ScriptProcessorNode { |
| 44 [Suppressed] attribute EventListener onaudioprocess; | 48 [Suppressed] attribute EventListener onaudioprocess; |
| (...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 // TextEncoder/TextDecoder | 344 // TextEncoder/TextDecoder |
| 341 [Suppressed] | 345 [Suppressed] |
| 342 interface TextEncoder {}; | 346 interface TextEncoder {}; |
| 343 | 347 |
| 344 [Suppressed] | 348 [Suppressed] |
| 345 interface TextDecoder {}; | 349 interface TextDecoder {}; |
| 346 | 350 |
| 347 [Supplemental] | 351 [Supplemental] |
| 348 interface Window : EventTarget {}; | 352 interface Window : EventTarget {}; |
| 349 | 353 |
| OLD | NEW |