| 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 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 [DartName=continueFunction] void continue(in optional IDBKey key); | 212 [DartName=continueFunction] void continue(in optional IDBKey key); |
| 213 }; | 213 }; |
| 214 [Supplemental] | 214 [Supplemental] |
| 215 interface IDBIndex { | 215 interface IDBIndex { |
| 216 [DartName=getObject] IDBRequest get(in IDBKey key); | 216 [DartName=getObject] IDBRequest get(in IDBKey key); |
| 217 }; | 217 }; |
| 218 [Supplemental] | 218 [Supplemental] |
| 219 interface IDBObjectStore { | 219 interface IDBObjectStore { |
| 220 [DartName=getObject] IDBRequest get(in IDBKey key); | 220 [DartName=getObject] IDBRequest get(in IDBKey key); |
| 221 }; | 221 }; |
| 222 |
| 223 interface IDBKeyRange { |
| 224 [Suppressed] static IDBKeyRange only(in IDBKey value) |
| 225 raises (IDBDatabaseException); |
| 226 [Suppressed] static IDBKeyRange lowerBound(in IDBKey bound, in optional bool
ean open) |
| 227 raises (IDBDatabaseException); |
| 228 [Suppressed] static IDBKeyRange upperBound(in IDBKey bound, in optional bool
ean open) |
| 229 raises (IDBDatabaseException); |
| 230 [Suppressed] static IDBKeyRange bound(in IDBKey lower, in IDBKey upper, in o
ptional boolean lowerOpen, optional boolean upperOpen) |
| 231 raises (IDBDatabaseException); |
| 232 }; |
| 222 }; | 233 }; |
| 223 | 234 |
| 224 module html { | 235 module html { |
| 225 [Supplemental, Callback] // Add missing Callback attribute. | 236 [Supplemental, Callback] // Add missing Callback attribute. |
| 226 interface VoidCallback { | 237 interface VoidCallback { |
| 227 }; | 238 }; |
| 228 }; | 239 }; |
| 229 | 240 |
| 230 module svg { | 241 module svg { |
| 231 interface SVGNumber { | 242 interface SVGNumber { |
| 232 [StrictTypeChecking, Custom] attribute double value; | 243 [StrictTypeChecking, Custom] attribute double value; |
| 233 }; | 244 }; |
| 234 } | 245 } |
| OLD | NEW |