Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(400)

Side by Side Diff: client/dom/generated/src/frog/Range.dart

Issue 8588010: Regenerate from IDL with LANGUAGE_JAVASCRIPT on (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Map Array to List Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/RGBColor.dart ('k') | client/dom/generated/src/frog/RangeException.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698