| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |