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