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 HTMLElement extends Element { | 7 interface HTMLElement extends Element { |
8 | 8 |
9 String get accessKey(); | 9 String accessKey; |
10 | 10 |
11 void set accessKey(String value); | 11 final HTMLCollection children; |
12 | 12 |
13 HTMLCollection get children(); | 13 final DOMTokenList classList; |
14 | 14 |
15 DOMTokenList get classList(); | 15 String className; |
16 | 16 |
17 String get className(); | 17 String contentEditable; |
18 | 18 |
19 void set className(String value); | 19 String dir; |
20 | 20 |
21 String get contentEditable(); | 21 bool draggable; |
22 | 22 |
23 void set contentEditable(String value); | 23 bool hidden; |
24 | 24 |
25 String get dir(); | 25 String id; |
26 | 26 |
27 void set dir(String value); | 27 String innerHTML; |
28 | 28 |
29 bool get draggable(); | 29 String innerText; |
30 | 30 |
31 void set draggable(bool value); | 31 final bool isContentEditable; |
32 | 32 |
33 bool get hidden(); | 33 String lang; |
34 | 34 |
35 void set hidden(bool value); | 35 String outerHTML; |
36 | 36 |
37 String get id(); | 37 String outerText; |
38 | 38 |
39 void set id(String value); | 39 bool spellcheck; |
40 | 40 |
41 String get innerHTML(); | 41 int tabIndex; |
42 | 42 |
43 void set innerHTML(String value); | 43 String title; |
44 | 44 |
45 String get innerText(); | 45 String webkitdropzone; |
46 | |
47 void set innerText(String value); | |
48 | |
49 bool get isContentEditable(); | |
50 | |
51 String get lang(); | |
52 | |
53 void set lang(String value); | |
54 | |
55 String get outerHTML(); | |
56 | |
57 void set outerHTML(String value); | |
58 | |
59 String get outerText(); | |
60 | |
61 void set outerText(String value); | |
62 | |
63 bool get spellcheck(); | |
64 | |
65 void set spellcheck(bool value); | |
66 | |
67 int get tabIndex(); | |
68 | |
69 void set tabIndex(int value); | |
70 | |
71 String get title(); | |
72 | |
73 void set title(String value); | |
74 | |
75 String get webkitdropzone(); | |
76 | |
77 void set webkitdropzone(String value); | |
78 | 46 |
79 Element insertAdjacentElement(String where, Element element); | 47 Element insertAdjacentElement(String where, Element element); |
80 | 48 |
81 void insertAdjacentHTML(String where, String html); | 49 void insertAdjacentHTML(String where, String html); |
82 | 50 |
83 void insertAdjacentText(String where, String text); | 51 void insertAdjacentText(String where, String text); |
84 } | 52 } |
OLD | NEW |