| OLD | NEW |
| 1 | 1 |
| 2 class Node native "*Node" { | 2 class Node native "*Node" { |
| 3 | 3 |
| 4 static final int ATTRIBUTE_NODE = 2; |
| 5 |
| 6 static final int CDATA_SECTION_NODE = 4; |
| 7 |
| 8 static final int COMMENT_NODE = 8; |
| 9 |
| 10 static final int DOCUMENT_FRAGMENT_NODE = 11; |
| 11 |
| 12 static final int DOCUMENT_NODE = 9; |
| 13 |
| 14 static final int DOCUMENT_POSITION_CONTAINED_BY = 0x10; |
| 15 |
| 16 static final int DOCUMENT_POSITION_CONTAINS = 0x08; |
| 17 |
| 18 static final int DOCUMENT_POSITION_DISCONNECTED = 0x01; |
| 19 |
| 20 static final int DOCUMENT_POSITION_FOLLOWING = 0x04; |
| 21 |
| 22 static final int DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC = 0x20; |
| 23 |
| 24 static final int DOCUMENT_POSITION_PRECEDING = 0x02; |
| 25 |
| 26 static final int DOCUMENT_TYPE_NODE = 10; |
| 27 |
| 28 static final int ELEMENT_NODE = 1; |
| 29 |
| 30 static final int ENTITY_NODE = 6; |
| 31 |
| 32 static final int ENTITY_REFERENCE_NODE = 5; |
| 33 |
| 34 static final int NOTATION_NODE = 12; |
| 35 |
| 36 static final int PROCESSING_INSTRUCTION_NODE = 7; |
| 37 |
| 38 static final int TEXT_NODE = 3; |
| 39 |
| 4 NamedNodeMap attributes; | 40 NamedNodeMap attributes; |
| 5 | 41 |
| 6 String baseURI; | 42 String baseURI; |
| 7 | 43 |
| 8 NodeList childNodes; | 44 NodeList childNodes; |
| 9 | 45 |
| 10 Node firstChild; | 46 Node firstChild; |
| 11 | 47 |
| 12 Node lastChild; | 48 Node lastChild; |
| 13 | 49 |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 Node removeChild(Node oldChild) native; | 106 Node removeChild(Node oldChild) native; |
| 71 | 107 |
| 72 void removeEventListener(String type, EventListener listener, [bool useCapture
= null]) native; | 108 void removeEventListener(String type, EventListener listener, [bool useCapture
= null]) native; |
| 73 | 109 |
| 74 Node replaceChild(Node newChild, Node oldChild) native; | 110 Node replaceChild(Node newChild, Node oldChild) native; |
| 75 | 111 |
| 76 var dartObjectLocalStorage; | 112 var dartObjectLocalStorage; |
| 77 | 113 |
| 78 String get typeName() native; | 114 String get typeName() native; |
| 79 } | 115 } |
| OLD | NEW |