| 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 30 matching lines...) Expand all Loading... |
| 41 getter attribute Element nextElementSibling; | 41 getter attribute Element nextElementSibling; |
| 42 getter attribute Element previousElementSibling; | 42 getter attribute Element previousElementSibling; |
| 43 }; | 43 }; |
| 44 Element implements ElementTraversal; | 44 Element implements ElementTraversal; |
| 45 }; | 45 }; |
| 46 | 46 |
| 47 module html { | 47 module html { |
| 48 [Supplemental] | 48 [Supplemental] |
| 49 interface Console { | 49 interface Console { |
| 50 [Suppressed] void debug(); | 50 [Suppressed] void debug(); |
| 51 [CustomArgumentHandling] void debug(DOMObject arg); | 51 [CallWith=ScriptArguments|CallStack] void debug(DOMObject arg); |
| 52 [Suppressed] void error(); | 52 [Suppressed] void error(); |
| 53 [CustomArgumentHandling] void error(DOMObject arg); | 53 [CallWith=ScriptArguments|CallStack] void error(DOMObject arg); |
| 54 [Suppressed] void info(); | 54 [Suppressed] void info(); |
| 55 [CustomArgumentHandling] void info(DOMObject arg); | 55 [CallWith=ScriptArguments|CallStack] void info(DOMObject arg); |
| 56 [Suppressed] void log(); | 56 [Suppressed] void log(); |
| 57 [CustomArgumentHandling] void log(DOMObject arg); | 57 [CallWith=ScriptArguments|CallStack] void log(DOMObject arg); |
| 58 [Suppressed] void warn(); | 58 [Suppressed] void warn(); |
| 59 [CustomArgumentHandling] void warn(DOMObject arg); | 59 [CallWith=ScriptArguments|CallStack] void warn(DOMObject arg); |
| 60 [Suppressed] void trace(); | 60 [Suppressed] void trace(); |
| 61 [CustomArgumentHandling] void trace(DOMObject arg); | 61 [CallWith=ScriptArguments|CallStack] void trace(DOMObject arg); |
| 62 [Suppressed] void assert(in boolean condition); | 62 [Suppressed] void assert(in boolean condition); |
| 63 [CustomArgumentHandling] void assertCondition(boolean condition, DOMObject a
rg); | 63 [CallWith=ScriptArguments|CallStack] void assertCondition(boolean condition,
DOMObject arg); |
| 64 [Suppressed] void timeEnd(in DOMString title); | 64 [Suppressed] void timeEnd(in DOMString title); |
| 65 [CustomArgumentHandling] void timeEnd(DOMString title, DOMObject arg); | 65 [CallWith=ScriptArguments|CallStack] void timeEnd(DOMString title, DOMObject
arg); |
| 66 [Suppressed] void timeStamp(); | 66 [Suppressed] void timeStamp(); |
| 67 [CustomArgumentHandling] void timeStamp(DOMObject arg); | 67 [CallWith=ScriptArguments|CallStack] void timeStamp(DOMObject arg); |
| 68 [Suppressed] void group(); | 68 [Suppressed] void group(); |
| 69 [CustomArgumentHandling] void group(DOMObject arg); | 69 [CallWith=ScriptArguments|CallStack] void group(DOMObject arg); |
| 70 [Suppressed] void groupCollapsed(); | 70 [Suppressed] void groupCollapsed(); |
| 71 [CustomArgumentHandling] void groupCollapsed(DOMObject arg); | 71 [CallWith=ScriptArguments|CallStack] void groupCollapsed(DOMObject arg); |
| 72 }; | 72 }; |
| 73 | 73 |
| 74 [Supplemental] | 74 [Supplemental] |
| 75 interface HTMLOptionsCollection { | 75 interface HTMLOptionsCollection { |
| 76 [Suppressed] void add(in optional HTMLOptionElement element, in optional lon
g before); | 76 [Suppressed] void add(in optional HTMLOptionElement element, in optional lon
g before); |
| 77 }; | 77 }; |
| 78 | 78 |
| 79 [Supplemental] | 79 [Supplemental] |
| 80 interface WebGLContextEvent { | 80 interface WebGLContextEvent { |
| 81 [Suppressed] void initEvent(in optional DOMString eventTypeArg, | 81 [Suppressed] void initEvent(in optional DOMString eventTypeArg, |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 [Supplemental, Callback] // Add missing Callback attribute. | 194 [Supplemental, Callback] // Add missing Callback attribute. |
| 195 interface VoidCallback { | 195 interface VoidCallback { |
| 196 }; | 196 }; |
| 197 }; | 197 }; |
| 198 | 198 |
| 199 module svg { | 199 module svg { |
| 200 interface SVGNumber { | 200 interface SVGNumber { |
| 201 [StrictTypeChecking, Custom] attribute double value; | 201 [StrictTypeChecking, Custom] attribute double value; |
| 202 }; | 202 }; |
| 203 } | 203 } |
| OLD | NEW |