OLD | NEW |
1 | 1 |
2 class HTMLDocumentJs extends DocumentJs implements HTMLDocument native "*HTMLDoc
ument" { | 2 class _HTMLDocumentJs extends _DocumentJs implements HTMLDocument native "*HTMLD
ocument" { |
3 | 3 |
4 ElementJs get activeElement() native "return this.activeElement;"; | 4 _ElementJs get activeElement() native "return this.activeElement;"; |
5 | 5 |
6 String get alinkColor() native "return this.alinkColor;"; | 6 String get alinkColor() native "return this.alinkColor;"; |
7 | 7 |
8 void set alinkColor(String value) native "this.alinkColor = value;"; | 8 void set alinkColor(String value) native "this.alinkColor = value;"; |
9 | 9 |
10 HTMLAllCollectionJs get all() native "return this.all;"; | 10 _HTMLAllCollectionJs get all() native "return this.all;"; |
11 | 11 |
12 void set all(HTMLAllCollectionJs value) native "this.all = value;"; | 12 void set all(_HTMLAllCollectionJs value) native "this.all = value;"; |
13 | 13 |
14 String get bgColor() native "return this.bgColor;"; | 14 String get bgColor() native "return this.bgColor;"; |
15 | 15 |
16 void set bgColor(String value) native "this.bgColor = value;"; | 16 void set bgColor(String value) native "this.bgColor = value;"; |
17 | 17 |
18 String get compatMode() native "return this.compatMode;"; | 18 String get compatMode() native "return this.compatMode;"; |
19 | 19 |
20 String get designMode() native "return this.designMode;"; | 20 String get designMode() native "return this.designMode;"; |
21 | 21 |
22 void set designMode(String value) native "this.designMode = value;"; | 22 void set designMode(String value) native "this.designMode = value;"; |
23 | 23 |
24 String get dir() native "return this.dir;"; | 24 String get dir() native "return this.dir;"; |
25 | 25 |
26 void set dir(String value) native "this.dir = value;"; | 26 void set dir(String value) native "this.dir = value;"; |
27 | 27 |
28 HTMLCollectionJs get embeds() native "return this.embeds;"; | 28 _HTMLCollectionJs get embeds() native "return this.embeds;"; |
29 | 29 |
30 String get fgColor() native "return this.fgColor;"; | 30 String get fgColor() native "return this.fgColor;"; |
31 | 31 |
32 void set fgColor(String value) native "this.fgColor = value;"; | 32 void set fgColor(String value) native "this.fgColor = value;"; |
33 | 33 |
34 String get linkColor() native "return this.linkColor;"; | 34 String get linkColor() native "return this.linkColor;"; |
35 | 35 |
36 void set linkColor(String value) native "this.linkColor = value;"; | 36 void set linkColor(String value) native "this.linkColor = value;"; |
37 | 37 |
38 HTMLCollectionJs get plugins() native "return this.plugins;"; | 38 _HTMLCollectionJs get plugins() native "return this.plugins;"; |
39 | 39 |
40 HTMLCollectionJs get scripts() native "return this.scripts;"; | 40 _HTMLCollectionJs get scripts() native "return this.scripts;"; |
41 | 41 |
42 String get vlinkColor() native "return this.vlinkColor;"; | 42 String get vlinkColor() native "return this.vlinkColor;"; |
43 | 43 |
44 void set vlinkColor(String value) native "this.vlinkColor = value;"; | 44 void set vlinkColor(String value) native "this.vlinkColor = value;"; |
45 | 45 |
46 void captureEvents() native; | 46 void captureEvents() native; |
47 | 47 |
48 void clear() native; | 48 void clear() native; |
49 | 49 |
50 void close() native; | 50 void close() native; |
51 | 51 |
52 bool hasFocus() native; | 52 bool hasFocus() native; |
53 | 53 |
54 void open() native; | 54 void open() native; |
55 | 55 |
56 void releaseEvents() native; | 56 void releaseEvents() native; |
57 | 57 |
58 void write(String text) native; | 58 void write(String text) native; |
59 | 59 |
60 void writeln(String text) native; | 60 void writeln(String text) native; |
61 } | 61 } |
OLD | NEW |