| 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 |
| 258 module html { | 269 module html { |
| 259 [Supplemental, Callback] // Add missing Callback attribute. | 270 [Supplemental, Callback] // Add missing Callback attribute. |
| 260 interface VoidCallback { | 271 interface VoidCallback { |
| 261 }; | 272 }; |
| 262 }; | 273 }; |
| 263 | 274 |
| 264 module svg { | 275 module svg { |
| 265 interface SVGNumber { | 276 interface SVGNumber { |
| 266 [StrictTypeChecking, Custom] attribute double value; | 277 [StrictTypeChecking, Custom] attribute double value; |
| 267 }; | 278 }; |
| 268 } | 279 } |
| OLD | NEW |