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