| OLD | NEW |
| 1 | 1 |
| 2 class _HTMLDocumentJs extends _DocumentJs implements HTMLDocument native "*HTMLD
ocument" { | 2 class _HTMLDocumentJs extends _DocumentJs implements HTMLDocument native "*HTMLD
ocument" { |
| 3 | 3 |
| 4 final _ElementJs activeElement; | 4 final _ElementJs activeElement; |
| 5 | 5 |
| 6 String alinkColor; | 6 String alinkColor; |
| 7 | 7 |
| 8 _HTMLAllCollectionJs all; | 8 _HTMLAllCollectionJs all; |
| 9 | 9 |
| 10 String bgColor; | 10 String bgColor; |
| 11 | 11 |
| 12 final String compatMode; | 12 // Use implementation from Document. |
| 13 // final String compatMode; |
| 13 | 14 |
| 14 String designMode; | 15 String designMode; |
| 15 | 16 |
| 16 String dir; | 17 String dir; |
| 17 | 18 |
| 18 final _HTMLCollectionJs embeds; | 19 final _HTMLCollectionJs embeds; |
| 19 | 20 |
| 20 String fgColor; | 21 String fgColor; |
| 21 | 22 |
| 22 String linkColor; | 23 String linkColor; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 36 bool hasFocus() native; | 37 bool hasFocus() native; |
| 37 | 38 |
| 38 void open() native; | 39 void open() native; |
| 39 | 40 |
| 40 void releaseEvents() native; | 41 void releaseEvents() native; |
| 41 | 42 |
| 42 void write(String text) native; | 43 void write(String text) native; |
| 43 | 44 |
| 44 void writeln(String text) native; | 45 void writeln(String text) native; |
| 45 } | 46 } |
| OLD | NEW |