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

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

Issue 8879007: Enable fullscreen API and file system API (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years 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 Element extends Node native "Element" { 2 class Element extends Node native "Element" {
3 3
4 static final int ALLOW_KEYBOARD_INPUT = 1;
5
4 int childElementCount; 6 int childElementCount;
5 7
6 int clientHeight; 8 int clientHeight;
7 9
8 int clientLeft; 10 int clientLeft;
9 11
10 int clientTop; 12 int clientTop;
11 13
12 int clientWidth; 14 int clientWidth;
13 15
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 89
88 void setAttribute(String name, String value) native; 90 void setAttribute(String name, String value) native;
89 91
90 void setAttributeNS(String namespaceURI, String qualifiedName, String value) n ative; 92 void setAttributeNS(String namespaceURI, String qualifiedName, String value) n ative;
91 93
92 Attr setAttributeNode(Attr newAttr) native; 94 Attr setAttributeNode(Attr newAttr) native;
93 95
94 Attr setAttributeNodeNS(Attr newAttr) native; 96 Attr setAttributeNodeNS(Attr newAttr) native;
95 97
96 bool webkitMatchesSelector(String selectors) native; 98 bool webkitMatchesSelector(String selectors) native;
99
100 void webkitRequestFullScreen(int flags) native;
97 } 101 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/Document.dart ('k') | client/dom/generated/src/frog/WorkerContext.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698