| OLD | NEW |
| (Empty) |
| 1 | |
| 2 class _HTMLDocumentJs extends _DocumentJs implements HTMLDocument native "*HTMLD
ocument" { | |
| 3 | |
| 4 final _ElementJs activeElement; | |
| 5 | |
| 6 String alinkColor; | |
| 7 | |
| 8 _HTMLAllCollectionJs all; | |
| 9 | |
| 10 String bgColor; | |
| 11 | |
| 12 // Use implementation from Document. | |
| 13 // final String compatMode; | |
| 14 | |
| 15 String designMode; | |
| 16 | |
| 17 String dir; | |
| 18 | |
| 19 final _HTMLCollectionJs embeds; | |
| 20 | |
| 21 String fgColor; | |
| 22 | |
| 23 String linkColor; | |
| 24 | |
| 25 final _HTMLCollectionJs plugins; | |
| 26 | |
| 27 final _HTMLCollectionJs scripts; | |
| 28 | |
| 29 String vlinkColor; | |
| 30 | |
| 31 void captureEvents() native; | |
| 32 | |
| 33 void clear() native; | |
| 34 | |
| 35 void close() native; | |
| 36 | |
| 37 bool hasFocus() native; | |
| 38 | |
| 39 void open() native; | |
| 40 | |
| 41 void releaseEvents() native; | |
| 42 | |
| 43 void write(String text) native; | |
| 44 | |
| 45 void writeln(String text) native; | |
| 46 } | |
| OLD | NEW |