OLD | NEW |
1 | 1 |
2 class _HTMLElementJs extends _ElementJs implements HTMLElement native "*HTMLElem
ent" { | 2 class _HTMLElementJs extends _ElementJs implements HTMLElement native "*HTMLElem
ent" { |
3 | 3 |
4 String accessKey; | 4 String accessKey; |
5 | 5 |
6 final _HTMLCollectionJs children; | 6 final _HTMLCollectionJs children; |
7 | 7 |
8 final _DOMTokenListJs classList; | 8 final _DOMTokenListJs classList; |
9 | 9 |
10 String className; | 10 String className; |
(...skipping 19 matching lines...) Expand all Loading... |
30 String outerHTML; | 30 String outerHTML; |
31 | 31 |
32 String outerText; | 32 String outerText; |
33 | 33 |
34 bool spellcheck; | 34 bool spellcheck; |
35 | 35 |
36 int tabIndex; | 36 int tabIndex; |
37 | 37 |
38 String title; | 38 String title; |
39 | 39 |
| 40 bool translate; |
| 41 |
40 String webkitdropzone; | 42 String webkitdropzone; |
41 | 43 |
42 void click() native; | 44 void click() native; |
43 | 45 |
44 _ElementJs insertAdjacentElement(String where, _ElementJs element) native; | 46 _ElementJs insertAdjacentElement(String where, _ElementJs element) native; |
45 | 47 |
46 void insertAdjacentHTML(String where, String html) native; | 48 void insertAdjacentHTML(String where, String html) native; |
47 | 49 |
48 void insertAdjacentText(String where, String text) native; | 50 void insertAdjacentText(String where, String text) native; |
49 } | 51 } |
OLD | NEW |