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