| OLD | NEW |
| (Empty) | |
| 1 |
| 2 class XSLTProcessor native "XSLTProcessor" { |
| 3 |
| 4 void clearParameters() native; |
| 5 |
| 6 String getParameter(String namespaceURI, String localName) native; |
| 7 |
| 8 void importStylesheet(Node stylesheet) native; |
| 9 |
| 10 void removeParameter(String namespaceURI, String localName) native; |
| 11 |
| 12 void reset() native; |
| 13 |
| 14 void setParameter(String namespaceURI, String localName, String value) native; |
| 15 |
| 16 Document transformToDocument(Node source) native; |
| 17 |
| 18 DocumentFragment transformToFragment(Node source, Document docVal) native; |
| 19 |
| 20 var dartObjectLocalStorage; |
| 21 |
| 22 String get typeName() native; |
| 23 } |
| OLD | NEW |