| 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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 [DartName=getObject] IDBRequest get(in IDBKeyRange key); | 248 [DartName=getObject] IDBRequest get(in IDBKeyRange key); |
| 249 }; | 249 }; |
| 250 | 250 |
| 251 interface EntrySync { | 251 interface EntrySync { |
| 252 // Native implementation is declared to return EntrySync. | 252 // Native implementation is declared to return EntrySync. |
| 253 [Suppressed] DirectoryEntrySync getParent(); | 253 [Suppressed] DirectoryEntrySync getParent(); |
| 254 EntrySync getParent(); | 254 EntrySync getParent(); |
| 255 }; | 255 }; |
| 256 }; | 256 }; |
| 257 | 257 |
| 258 | |
| 259 module html { | |
| 260 [Supplemental, | |
| 261 CustomConstructor, | |
| 262 Constructor(in Array blobParts, | |
| 263 [Optional] in DOMString type, [Optional] in DOMString endings) | |
| 264 ] | |
| 265 interface Blob { | |
| 266 }; | |
| 267 }; | |
| 268 | |
| 269 module html { | 258 module html { |
| 270 [Supplemental, Callback] // Add missing Callback attribute. | 259 [Supplemental, Callback] // Add missing Callback attribute. |
| 271 interface VoidCallback { | 260 interface VoidCallback { |
| 272 }; | 261 }; |
| 273 }; | 262 }; |
| 274 | 263 |
| 275 module svg { | 264 module svg { |
| 276 interface SVGNumber { | 265 interface SVGNumber { |
| 277 [StrictTypeChecking, Custom] attribute double value; | 266 [StrictTypeChecking, Custom] attribute double value; |
| 278 }; | 267 }; |
| 279 } | 268 } |
| OLD | NEW |