| OLD | NEW |
| (Empty) | |
| 1 |
| 2 class Range native "Range" { |
| 3 |
| 4 bool collapsed; |
| 5 |
| 6 Node commonAncestorContainer; |
| 7 |
| 8 Node endContainer; |
| 9 |
| 10 int endOffset; |
| 11 |
| 12 Node startContainer; |
| 13 |
| 14 int startOffset; |
| 15 |
| 16 String text; |
| 17 |
| 18 DocumentFragment cloneContents() native; |
| 19 |
| 20 Range cloneRange() native; |
| 21 |
| 22 void collapse(bool toStart) native; |
| 23 |
| 24 int compareNode(Node refNode) native; |
| 25 |
| 26 int comparePoint(Node refNode, int offset) native; |
| 27 |
| 28 DocumentFragment createContextualFragment(String html) native; |
| 29 |
| 30 void deleteContents() native; |
| 31 |
| 32 void detach() native; |
| 33 |
| 34 void expand(String unit) native; |
| 35 |
| 36 DocumentFragment extractContents() native; |
| 37 |
| 38 void insertNode(Node newNode) native; |
| 39 |
| 40 bool intersectsNode(Node refNode) native; |
| 41 |
| 42 bool isPointInRange(Node refNode, int offset) native; |
| 43 |
| 44 void selectNode(Node refNode) native; |
| 45 |
| 46 void selectNodeContents(Node refNode) native; |
| 47 |
| 48 void setEnd(Node refNode, int offset) native; |
| 49 |
| 50 void setEndAfter(Node refNode) native; |
| 51 |
| 52 void setEndBefore(Node refNode) native; |
| 53 |
| 54 void setStart(Node refNode, int offset) native; |
| 55 |
| 56 void setStartAfter(Node refNode) native; |
| 57 |
| 58 void setStartBefore(Node refNode) native; |
| 59 |
| 60 void surroundContents(Node newParent) native; |
| 61 |
| 62 String toString() native; |
| 63 |
| 64 var dartObjectLocalStorage; |
| 65 |
| 66 String get typeName() native; |
| 67 } |
| OLD | NEW |