| OLD | NEW |
| (Empty) | |
| 1 |
| 2 class DOMImplementation native "DOMImplementation" { |
| 3 |
| 4 CSSStyleSheet createCSSStyleSheet(String title, String media) native; |
| 5 |
| 6 Document createDocument(String namespaceURI, String qualifiedName, DocumentTyp
e doctype) native; |
| 7 |
| 8 DocumentType createDocumentType(String qualifiedName, String publicId, String
systemId) native; |
| 9 |
| 10 HTMLDocument createHTMLDocument(String title) native; |
| 11 |
| 12 bool hasFeature(String feature, String version) native; |
| 13 |
| 14 var dartObjectLocalStorage; |
| 15 |
| 16 String get typeName() native; |
| 17 } |
| OLD | NEW |