| OLD | NEW |
| 1 | 1 |
| 2 class _NodeJs extends _DOMTypeJs implements Node native "*Node" { | 2 class _NodeJs extends _EventTargetJs implements Node native "*Node" { |
| 3 | 3 |
| 4 static final int ATTRIBUTE_NODE = 2; | 4 static final int ATTRIBUTE_NODE = 2; |
| 5 | 5 |
| 6 static final int CDATA_SECTION_NODE = 4; | 6 static final int CDATA_SECTION_NODE = 4; |
| 7 | 7 |
| 8 static final int COMMENT_NODE = 8; | 8 static final int COMMENT_NODE = 8; |
| 9 | 9 |
| 10 static final int DOCUMENT_FRAGMENT_NODE = 11; | 10 static final int DOCUMENT_FRAGMENT_NODE = 11; |
| 11 | 11 |
| 12 static final int DOCUMENT_NODE = 9; | 12 static final int DOCUMENT_NODE = 9; |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 String lookupPrefix(String namespaceURI) native; | 102 String lookupPrefix(String namespaceURI) native; |
| 103 | 103 |
| 104 void normalize() native; | 104 void normalize() native; |
| 105 | 105 |
| 106 _NodeJs removeChild(_NodeJs oldChild) native; | 106 _NodeJs removeChild(_NodeJs oldChild) native; |
| 107 | 107 |
| 108 void removeEventListener(String type, EventListener listener, [bool useCapture
= null]) native; | 108 void removeEventListener(String type, EventListener listener, [bool useCapture
= null]) native; |
| 109 | 109 |
| 110 _NodeJs replaceChild(_NodeJs newChild, _NodeJs oldChild) native; | 110 _NodeJs replaceChild(_NodeJs newChild, _NodeJs oldChild) native; |
| 111 } | 111 } |
| OLD | NEW |