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 HTMLElement extends Element { | 7 interface HTMLElement extends Element { |
8 | 8 |
9 String accessKey; | 9 String accessKey; |
10 | 10 |
(...skipping 26 matching lines...) Expand all Loading... |
37 String outerText; | 37 String outerText; |
38 | 38 |
39 bool spellcheck; | 39 bool spellcheck; |
40 | 40 |
41 int tabIndex; | 41 int tabIndex; |
42 | 42 |
43 String title; | 43 String title; |
44 | 44 |
45 String webkitdropzone; | 45 String webkitdropzone; |
46 | 46 |
| 47 void click(); |
| 48 |
47 Element insertAdjacentElement(String where, Element element); | 49 Element insertAdjacentElement(String where, Element element); |
48 | 50 |
49 void insertAdjacentHTML(String where, String html); | 51 void insertAdjacentHTML(String where, String html); |
50 | 52 |
51 void insertAdjacentText(String where, String text); | 53 void insertAdjacentText(String where, String text); |
52 } | 54 } |
OLD | NEW |