| 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); |
| 11 }; | 11 }; |
| 12 | 12 |
| 13 [Supplemental] | 13 [Supplemental] |
| 14 interface ScriptProcessorNode { | 14 interface ScriptProcessorNode { |
| 15 // FIXME(antonm): provide proper support. | |
| 16 [Suppressed] attribute EventListener onaudioprocess; | 15 [Suppressed] attribute EventListener onaudioprocess; |
| 16 [Custom] void _setEventListener(EventListener eventListener); |
| 17 }; | 17 }; |
| 18 | 18 |
| 19 // Force ElementTraversal. WebKit defines these directly. | 19 // Force ElementTraversal. WebKit defines these directly. |
| 20 interface ElementTraversal { | 20 interface ElementTraversal { |
| 21 readonly attribute unsigned long childElementCount; | 21 readonly attribute unsigned long childElementCount; |
| 22 readonly attribute Element firstElementChild; | 22 readonly attribute Element firstElementChild; |
| 23 readonly attribute Element lastElementChild; | 23 readonly attribute Element lastElementChild; |
| 24 readonly attribute Element nextElementSibling; | 24 readonly attribute Element nextElementSibling; |
| 25 readonly attribute Element previousElementSibling; | 25 readonly attribute Element previousElementSibling; |
| 26 }; | 26 }; |
| (...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 raises(DOMException); | 353 raises(DOMException); |
| 354 [Custom] void send([StrictTypeChecking] in DOMString data) | 354 [Custom] void send([StrictTypeChecking] in DOMString data) |
| 355 raises(DOMException); | 355 raises(DOMException); |
| 356 [Custom] void send(in DOMFormData data) | 356 [Custom] void send(in DOMFormData data) |
| 357 raises(DOMException); | 357 raises(DOMException); |
| 358 }; | 358 }; |
| 359 | 359 |
| 360 | 360 |
| 361 [Suppressed] | 361 [Suppressed] |
| 362 interface Entity {}; | 362 interface Entity {}; |
| OLD | NEW |