| 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 NamedNodeMap implements sequence<Node>; | 5 NamedNodeMap implements sequence<Node>; |
| 6 NodeList implements sequence<Node>; | 6 NodeList implements sequence<Node>; |
| 7 HTMLCollection implements sequence<Node>; | 7 HTMLCollection implements sequence<Node>; |
| 8 MediaList implements sequence<DOMString>; | 8 MediaList implements sequence<DOMString>; |
| 9 StyleSheetList implements sequence<StyleSheet>; | 9 StyleSheetList implements sequence<StyleSheet>; |
| 10 TouchList implements sequence<Touch>; | 10 TouchList implements sequence<Touch>; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 | 43 |
| 44 // Force ElementTraversal. WebKit defines these directly. | 44 // Force ElementTraversal. WebKit defines these directly. |
| 45 interface ElementTraversal { | 45 interface ElementTraversal { |
| 46 getter attribute unsigned long childElementCount; | 46 getter attribute unsigned long childElementCount; |
| 47 getter attribute Element firstElementChild; | 47 getter attribute Element firstElementChild; |
| 48 getter attribute Element lastElementChild; | 48 getter attribute Element lastElementChild; |
| 49 getter attribute Element nextElementSibling; | 49 getter attribute Element nextElementSibling; |
| 50 getter attribute Element previousElementSibling; | 50 getter attribute Element previousElementSibling; |
| 51 }; | 51 }; |
| 52 Element implements ElementTraversal; | 52 Element implements ElementTraversal; |
| 53 |
| 54 [Callback] |
| 55 interface TimeoutHandler { |
| 56 void handleEvent(); |
| 57 }; |
| 53 }; | 58 }; |
| 54 | 59 |
| 55 module html { | 60 module html { |
| 56 [Supplemental] | 61 [Supplemental] |
| 57 interface Console { | 62 interface Console { |
| 58 [Suppressed] void debug(); | 63 [Suppressed] void debug(); |
| 59 [CallWith=ScriptArguments|CallStack] void debug(DOMObject arg); | 64 [CallWith=ScriptArguments|CallStack] void debug(DOMObject arg); |
| 60 [Suppressed] void error(); | 65 [Suppressed] void error(); |
| 61 [CallWith=ScriptArguments|CallStack] void error(DOMObject arg); | 66 [CallWith=ScriptArguments|CallStack] void error(DOMObject arg); |
| 62 [Suppressed] void info(); | 67 [Suppressed] void info(); |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 [Supplemental, Callback] // Add missing Callback attribute. | 225 [Supplemental, Callback] // Add missing Callback attribute. |
| 221 interface VoidCallback { | 226 interface VoidCallback { |
| 222 }; | 227 }; |
| 223 }; | 228 }; |
| 224 | 229 |
| 225 module svg { | 230 module svg { |
| 226 interface SVGNumber { | 231 interface SVGNumber { |
| 227 [StrictTypeChecking, Custom] attribute double value; | 232 [StrictTypeChecking, Custom] attribute double value; |
| 228 }; | 233 }; |
| 229 } | 234 } |
| OLD | NEW |