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

Side by Side Diff: client/dom/generated/src/interface/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 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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; 9 static final int ALLOW_KEYBOARD_INPUT = 1;
10 10
(...skipping 30 matching lines...) Expand all
41 int scrollLeft; 41 int scrollLeft;
42 42
43 int scrollTop; 43 int scrollTop;
44 44
45 final int scrollWidth; 45 final int scrollWidth;
46 46
47 final CSSStyleDeclaration style; 47 final CSSStyleDeclaration style;
48 48
49 final String tagName; 49 final String tagName;
50 50
51 final String webkitRegionOverflow;
52
51 void blur(); 53 void blur();
52 54
53 void focus(); 55 void focus();
54 56
55 String getAttribute(String name); 57 String getAttribute(String name);
56 58
57 String getAttributeNS(String namespaceURI, String localName); 59 String getAttributeNS(String namespaceURI, String localName);
58 60
59 Attr getAttributeNode(String name); 61 Attr getAttributeNode(String name);
60 62
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 void setAttributeNS(String namespaceURI, String qualifiedName, String value); 99 void setAttributeNS(String namespaceURI, String qualifiedName, String value);
98 100
99 Attr setAttributeNode(Attr newAttr); 101 Attr setAttributeNode(Attr newAttr);
100 102
101 Attr setAttributeNodeNS(Attr newAttr); 103 Attr setAttributeNodeNS(Attr newAttr);
102 104
103 bool webkitMatchesSelector(String selectors); 105 bool webkitMatchesSelector(String selectors);
104 106
105 void webkitRequestFullScreen(int flags); 107 void webkitRequestFullScreen(int flags);
106 } 108 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/interface/DOMWindow.dart ('k') | client/dom/generated/src/interface/HTMLButtonElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698