| OLD | NEW |
| 1 | 1 |
| 2 // This file introduces / supplements and forces Dart declarations. | 2 // This file introduces / supplements and forces Dart declarations. |
| 3 | 3 |
| 4 module default { | 4 module default { |
| 5 FileList implements sequence<File>; | 5 FileList implements sequence<File>; |
| 6 HTMLCollection implements sequence<Node>; | 6 HTMLCollection implements sequence<Node>; |
| 7 MediaList implements sequence<DOMString>; | 7 MediaList implements sequence<DOMString>; |
| 8 NamedNodeMap implements sequence<Node>; | 8 NamedNodeMap implements sequence<Node>; |
| 9 NodeList implements sequence<Node>; | 9 NodeList implements sequence<Node>; |
| 10 StyleSheetList implements sequence<StyleSheet>; | 10 StyleSheetList implements sequence<StyleSheet>; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStr
ing name, in long width, in long height); | 29 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStr
ing name, in long width, in long height); |
| 30 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStr
ing name, in long width, in long height); | 30 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStr
ing name, in long width, in long height); |
| 31 }; | 31 }; |
| 32 | 32 |
| 33 DOMStringList implements sequence<DOMString>; | 33 DOMStringList implements sequence<DOMString>; |
| 34 }; | 34 }; |
| 35 | 35 |
| 36 module dom { | 36 module dom { |
| 37 // Force ElementTraversal. WebKit defines these directly. | 37 // Force ElementTraversal. WebKit defines these directly. |
| 38 interface ElementTraversal { | 38 interface ElementTraversal { |
| 39 getter attribute unsigned long childElementCount; | 39 readonly attribute unsigned long childElementCount; |
| 40 getter attribute Element firstElementChild; | 40 readonly attribute Element firstElementChild; |
| 41 getter attribute Element lastElementChild; | 41 readonly attribute Element lastElementChild; |
| 42 getter attribute Element nextElementSibling; | 42 readonly attribute Element nextElementSibling; |
| 43 getter attribute Element previousElementSibling; | 43 readonly attribute Element previousElementSibling; |
| 44 }; | 44 }; |
| 45 Element implements ElementTraversal; | 45 Element implements ElementTraversal; |
| 46 | 46 |
| 47 [Callback] | 47 [Callback] |
| 48 interface TimeoutHandler { | 48 interface TimeoutHandler { |
| 49 void handleEvent(); | 49 void handleEvent(); |
| 50 }; | 50 }; |
| 51 }; | 51 }; |
| 52 | 52 |
| 53 module html { | 53 module html { |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 }; | 266 }; |
| 267 }; | 267 }; |
| 268 | 268 |
| 269 module html { | 269 module html { |
| 270 [Supplemental, Callback] // Add missing Callback attribute. | 270 [Supplemental, Callback] // Add missing Callback attribute. |
| 271 interface VoidCallback { | 271 interface VoidCallback { |
| 272 }; | 272 }; |
| 273 }; | 273 }; |
| 274 | 274 |
| 275 module svg { | 275 module svg { |
| 276 interface SVGNumber { | 276 interface SVGNumber { |
| 277 [StrictTypeChecking, Custom] attribute double value; | 277 [StrictTypeChecking, Custom] attribute float value; |
| 278 }; | 278 }; |
| 279 } | 279 } |
| OLD | NEW |