| 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 17 matching lines...) Expand all Loading... |
| 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 }; | 35 }; |
| 36 | 36 |
| 37 [Supplemental] | 37 [Supplemental] |
| 38 interface Node { |
| 39 Node cloneNode([Default=Undefined] optional boolean deep); |
| 40 }; |
| 41 |
| 42 [Supplemental] |
| 38 interface ScriptProcessorNode { | 43 interface ScriptProcessorNode { |
| 39 [Suppressed] attribute EventListener onaudioprocess; | 44 [Suppressed] attribute EventListener onaudioprocess; |
| 40 [Custom] void _setEventListener(EventListener eventListener); | 45 [Custom] void _setEventListener(EventListener eventListener); |
| 41 }; | 46 }; |
| 42 | 47 |
| 43 /* | 48 /* |
| 44 // TODO(vsm): How should this interact with the new ChildNode and | 49 // TODO(vsm): How should this interact with the new ChildNode and |
| 45 // ParentNode interfaces? | 50 // ParentNode interfaces? |
| 46 // Force ElementTraversal. WebKit defines these directly. | 51 // Force ElementTraversal. WebKit defines these directly. |
| 47 interface ElementTraversal : ChildNode, ParentNode { | 52 interface ElementTraversal : ChildNode, ParentNode { |
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 [CustomSetter] attribute DOMString search; | 333 [CustomSetter] attribute DOMString search; |
| 329 [CustomSetter] attribute DOMString hash; | 334 [CustomSetter] attribute DOMString hash; |
| 330 }; | 335 }; |
| 331 | 336 |
| 332 | 337 |
| 333 [Supplemental] | 338 [Supplemental] |
| 334 interface Window : EventTarget {}; | 339 interface Window : EventTarget {}; |
| 335 | 340 |
| 336 [Supplemental] | 341 [Supplemental] |
| 337 interface AbstractWorker : EventTarget {}; | 342 interface AbstractWorker : EventTarget {}; |
| OLD | NEW |