| 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 Conditional=WEB_AUDIO] |
| 5 interface AudioContext {}; | 6 interface AudioContext {}; |
| 6 | 7 |
| 7 [Supplemental] | 8 [Supplemental] |
| 8 interface Document { | 9 interface Document { |
| 9 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStrin
g name, in long width, in long height); | 10 [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); | 11 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStrin
g name, in long width, in long height); |
| 11 }; | 12 }; |
| 12 | 13 |
| 13 [Supplemental] | 14 [Supplemental, |
| 15 Conditional=WEB_AUDIO] |
| 14 interface ScriptProcessorNode { | 16 interface ScriptProcessorNode { |
| 15 [Suppressed] attribute EventListener onaudioprocess; | 17 [Suppressed] attribute EventListener onaudioprocess; |
| 16 [Custom] void _setEventListener(EventListener eventListener); | 18 [Custom] void _setEventListener(EventListener eventListener); |
| 17 }; | 19 }; |
| 18 | 20 |
| 19 // Force ElementTraversal. WebKit defines these directly. | 21 // Force ElementTraversal. WebKit defines these directly. |
| 20 interface ElementTraversal { | 22 interface ElementTraversal { |
| 21 readonly attribute unsigned long childElementCount; | 23 readonly attribute unsigned long childElementCount; |
| 22 readonly attribute Element firstElementChild; | 24 readonly attribute Element firstElementChild; |
| 23 readonly attribute Element lastElementChild; | 25 readonly attribute Element lastElementChild; |
| (...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 raises(DOMException); | 351 raises(DOMException); |
| 350 [Custom] void send([StrictTypeChecking] in DOMString data) | 352 [Custom] void send([StrictTypeChecking] in DOMString data) |
| 351 raises(DOMException); | 353 raises(DOMException); |
| 352 [Custom] void send(in DOMFormData data) | 354 [Custom] void send(in DOMFormData data) |
| 353 raises(DOMException); | 355 raises(DOMException); |
| 354 }; | 356 }; |
| 355 | 357 |
| 356 | 358 |
| 357 [Suppressed] | 359 [Suppressed] |
| 358 interface Entity {}; | 360 interface Entity {}; |
| OLD | NEW |