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

Side by Side Diff: client/dom/generated/src/interface/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 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 interface Element extends Node, NodeSelector, ElementTraversal { 7 interface Element extends Node, NodeSelector, ElementTraversal {
8 8
9 static final int ALLOW_KEYBOARD_INPUT = 1;
10
9 int get childElementCount(); 11 int get childElementCount();
10 12
11 int get clientHeight(); 13 int get clientHeight();
12 14
13 int get clientLeft(); 15 int get clientLeft();
14 16
15 int get clientTop(); 17 int get clientTop();
16 18
17 int get clientWidth(); 19 int get clientWidth();
18 20
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 98
97 void setAttribute(String name, String value); 99 void setAttribute(String name, String value);
98 100
99 void setAttributeNS(String namespaceURI, String qualifiedName, String value); 101 void setAttributeNS(String namespaceURI, String qualifiedName, String value);
100 102
101 Attr setAttributeNode(Attr newAttr); 103 Attr setAttributeNode(Attr newAttr);
102 104
103 Attr setAttributeNodeNS(Attr newAttr); 105 Attr setAttributeNodeNS(Attr newAttr);
104 106
105 bool webkitMatchesSelector(String selectors); 107 bool webkitMatchesSelector(String selectors);
108
109 void webkitRequestFullScreen(int flags);
106 } 110 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/interface/Document.dart ('k') | client/dom/generated/src/interface/WorkerContext.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698