| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 [Suppressed] void error(); | 49 [Suppressed] void error(); |
| 50 void error(DOMObject arg); | 50 void error(DOMObject arg); |
| 51 [Suppressed] void info(); | 51 [Suppressed] void info(); |
| 52 void info(DOMObject arg); | 52 void info(DOMObject arg); |
| 53 [Suppressed] void log(); | 53 [Suppressed] void log(); |
| 54 void log(DOMObject arg); | 54 void log(DOMObject arg); |
| 55 [Suppressed] void warn(); | 55 [Suppressed] void warn(); |
| 56 void warn(DOMObject arg); | 56 void warn(DOMObject arg); |
| 57 [Suppressed] void trace(); | 57 [Suppressed] void trace(); |
| 58 void trace(DOMObject arg); | 58 void trace(DOMObject arg); |
| 59 |
| 60 [DartName=assert_] void assert(in boolean condition); |
| 59 }; | 61 }; |
| 60 | 62 |
| 61 [Supplemental] | 63 [Supplemental] |
| 62 interface HTMLOptionsCollection { | 64 interface HTMLOptionsCollection { |
| 63 [Suppressed] void add(in optional HTMLOptionElement element, in optional lon
g before); | 65 [Suppressed] void add(in optional HTMLOptionElement element, in optional lon
g before); |
| 64 }; | 66 }; |
| 65 | 67 |
| 66 [Supplemental] | 68 [Supplemental] |
| 67 interface WebGLContextEvent { | 69 interface WebGLContextEvent { |
| 68 [Suppressed] void initEvent(in optional DOMString eventTypeArg, | 70 [Suppressed] void initEvent(in optional DOMString eventTypeArg, |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 [DartName=getObject] IDBRequest get(in IDBKey key); | 172 [DartName=getObject] IDBRequest get(in IDBKey key); |
| 171 }; | 173 }; |
| 172 }; | 174 }; |
| 173 | 175 |
| 174 module html { | 176 module html { |
| 175 [Supplemental, Callback] // Add missing Callback attribute. | 177 [Supplemental, Callback] // Add missing Callback attribute. |
| 176 interface VoidCallback { | 178 interface VoidCallback { |
| 177 }; | 179 }; |
| 178 }; | 180 }; |
| 179 | 181 |
| OLD | NEW |