| OLD | NEW |
| 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; | 9 static final int ALLOW_KEYBOARD_INPUT = 1; |
| 10 | 10 |
| 11 int get childElementCount(); | 11 final int childElementCount; |
| 12 | 12 |
| 13 int get clientHeight(); | 13 final int clientHeight; |
| 14 | 14 |
| 15 int get clientLeft(); | 15 final int clientLeft; |
| 16 | 16 |
| 17 int get clientTop(); | 17 final int clientTop; |
| 18 | 18 |
| 19 int get clientWidth(); | 19 final int clientWidth; |
| 20 | 20 |
| 21 Element get firstElementChild(); | 21 final Element firstElementChild; |
| 22 | 22 |
| 23 Element get lastElementChild(); | 23 final Element lastElementChild; |
| 24 | 24 |
| 25 Element get nextElementSibling(); | 25 final Element nextElementSibling; |
| 26 | 26 |
| 27 int get offsetHeight(); | 27 final int offsetHeight; |
| 28 | 28 |
| 29 int get offsetLeft(); | 29 final int offsetLeft; |
| 30 | 30 |
| 31 Element get offsetParent(); | 31 final Element offsetParent; |
| 32 | 32 |
| 33 int get offsetTop(); | 33 final int offsetTop; |
| 34 | 34 |
| 35 int get offsetWidth(); | 35 final int offsetWidth; |
| 36 | 36 |
| 37 Element get previousElementSibling(); | 37 final Element previousElementSibling; |
| 38 | 38 |
| 39 int get scrollHeight(); | 39 final int scrollHeight; |
| 40 | 40 |
| 41 int get scrollLeft(); | 41 int scrollLeft; |
| 42 | 42 |
| 43 void set scrollLeft(int value); | 43 int scrollTop; |
| 44 | 44 |
| 45 int get scrollTop(); | 45 final int scrollWidth; |
| 46 | 46 |
| 47 void set scrollTop(int value); | 47 final CSSStyleDeclaration style; |
| 48 | 48 |
| 49 int get scrollWidth(); | 49 final String tagName; |
| 50 | |
| 51 CSSStyleDeclaration get style(); | |
| 52 | |
| 53 String get tagName(); | |
| 54 | 50 |
| 55 void blur(); | 51 void blur(); |
| 56 | 52 |
| 57 void focus(); | 53 void focus(); |
| 58 | 54 |
| 59 String getAttribute(String name); | 55 String getAttribute(String name); |
| 60 | 56 |
| 61 String getAttributeNS(String namespaceURI, String localName); | 57 String getAttributeNS(String namespaceURI, String localName); |
| 62 | 58 |
| 63 Attr getAttributeNode(String name); | 59 Attr getAttributeNode(String name); |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 void setAttributeNS(String namespaceURI, String qualifiedName, String value); | 97 void setAttributeNS(String namespaceURI, String qualifiedName, String value); |
| 102 | 98 |
| 103 Attr setAttributeNode(Attr newAttr); | 99 Attr setAttributeNode(Attr newAttr); |
| 104 | 100 |
| 105 Attr setAttributeNodeNS(Attr newAttr); | 101 Attr setAttributeNodeNS(Attr newAttr); |
| 106 | 102 |
| 107 bool webkitMatchesSelector(String selectors); | 103 bool webkitMatchesSelector(String selectors); |
| 108 | 104 |
| 109 void webkitRequestFullScreen(int flags); | 105 void webkitRequestFullScreen(int flags); |
| 110 } | 106 } |
| OLD | NEW |