| OLD | NEW |
| (Empty) | |
| 1 |
| 2 class Node native "Node" { |
| 3 |
| 4 NamedNodeMap attributes; |
| 5 |
| 6 String baseURI; |
| 7 |
| 8 NodeList childNodes; |
| 9 |
| 10 Node firstChild; |
| 11 |
| 12 Node lastChild; |
| 13 |
| 14 String localName; |
| 15 |
| 16 String namespaceURI; |
| 17 |
| 18 Node nextSibling; |
| 19 |
| 20 String nodeName; |
| 21 |
| 22 int nodeType; |
| 23 |
| 24 String nodeValue; |
| 25 |
| 26 Document ownerDocument; |
| 27 |
| 28 Element parentElement; |
| 29 |
| 30 Node parentNode; |
| 31 |
| 32 String prefix; |
| 33 |
| 34 Node previousSibling; |
| 35 |
| 36 String textContent; |
| 37 |
| 38 void addEventListener(String type, EventListener listener, [bool useCapture =
null]) native; |
| 39 |
| 40 Node appendChild(Node newChild) native; |
| 41 |
| 42 Node cloneNode(bool deep) native; |
| 43 |
| 44 int compareDocumentPosition(Node other) native; |
| 45 |
| 46 bool contains(Node other) native; |
| 47 |
| 48 bool dispatchEvent(Event event) native; |
| 49 |
| 50 bool hasAttributes() native; |
| 51 |
| 52 bool hasChildNodes() native; |
| 53 |
| 54 Node insertBefore(Node newChild, Node refChild) native; |
| 55 |
| 56 bool isDefaultNamespace(String namespaceURI) native; |
| 57 |
| 58 bool isEqualNode(Node other) native; |
| 59 |
| 60 bool isSameNode(Node other) native; |
| 61 |
| 62 bool isSupported(String feature, String version) native; |
| 63 |
| 64 String lookupNamespaceURI(String prefix) native; |
| 65 |
| 66 String lookupPrefix(String namespaceURI) native; |
| 67 |
| 68 void normalize() native; |
| 69 |
| 70 Node removeChild(Node oldChild) native; |
| 71 |
| 72 void removeEventListener(String type, EventListener listener, [bool useCapture
= null]) native; |
| 73 |
| 74 Node replaceChild(Node newChild, Node oldChild) native; |
| 75 |
| 76 var dartObjectLocalStorage; |
| 77 |
| 78 String get typeName() native; |
| 79 } |
| OLD | NEW |