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

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

Issue 9422008: Regenerate frog dom (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 years, 10 months 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 _ElementJs extends _NodeJs implements Element native "*Element" { 2 class _ElementJs extends _NodeJs implements Element native "*Element" {
3 3
4 static final int ALLOW_KEYBOARD_INPUT = 1; 4 static final int ALLOW_KEYBOARD_INPUT = 1;
5 5
6 final int childElementCount; 6 final int childElementCount;
7 7
8 final int clientHeight; 8 final int clientHeight;
9 9
10 final int clientLeft; 10 final int clientLeft;
(...skipping 25 matching lines...) Expand all
36 int scrollLeft; 36 int scrollLeft;
37 37
38 int scrollTop; 38 int scrollTop;
39 39
40 final int scrollWidth; 40 final int scrollWidth;
41 41
42 final _CSSStyleDeclarationJs style; 42 final _CSSStyleDeclarationJs style;
43 43
44 final String tagName; 44 final String tagName;
45 45
46 final String webkitRegionOverflow;
47
46 void blur() native; 48 void blur() native;
47 49
48 void focus() native; 50 void focus() native;
49 51
50 String getAttribute(String name) native; 52 String getAttribute(String name) native;
51 53
52 String getAttributeNS(String namespaceURI, String localName) native; 54 String getAttributeNS(String namespaceURI, String localName) native;
53 55
54 _AttrJs getAttributeNode(String name) native; 56 _AttrJs getAttributeNode(String name) native;
55 57
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 void setAttributeNS(String namespaceURI, String qualifiedName, String value) n ative; 94 void setAttributeNS(String namespaceURI, String qualifiedName, String value) n ative;
93 95
94 _AttrJs setAttributeNode(_AttrJs newAttr) native; 96 _AttrJs setAttributeNode(_AttrJs newAttr) native;
95 97
96 _AttrJs setAttributeNodeNS(_AttrJs newAttr) native; 98 _AttrJs setAttributeNodeNS(_AttrJs newAttr) native;
97 99
98 bool webkitMatchesSelector(String selectors) native; 100 bool webkitMatchesSelector(String selectors) native;
99 101
100 void webkitRequestFullScreen(int flags) native; 102 void webkitRequestFullScreen(int flags) native;
101 } 103 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/DOMWindow.dart ('k') | client/dom/generated/src/frog/HTMLButtonElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698