Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 | 1 |
| 2 class Node native "*Node" { | 2 class Node native "Node" { |
|
Emily Fortuna
2011/12/06 18:19:35
Just so I fully understand what's going on here,
sra1
2011/12/06 19:25:30
See frog/type.dart
/**
* Information about a nati
| |
| 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 106 Node removeChild(Node oldChild) native; | 106 Node removeChild(Node 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 Node replaceChild(Node newChild, Node oldChild) native; | 110 Node replaceChild(Node newChild, Node oldChild) native; |
| 111 | 111 |
| 112 var dartObjectLocalStorage; | 112 var dartObjectLocalStorage; |
| 113 | 113 |
| 114 String get typeName() native; | 114 String get typeName() native; |
| 115 } | 115 } |
| OLD | NEW |