| 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 HTMLDocument extends Document { | 7 interface HTMLDocument extends Document { |
| 8 | 8 |
| 9 Element get activeElement(); | 9 Element get activeElement(); |
| 10 | 10 |
| 11 String get alinkColor(); | 11 String get alinkColor(); |
| 12 | 12 |
| 13 void set alinkColor(String value); | 13 void set alinkColor(String value); |
| 14 | 14 |
| 15 HTMLAllCollection get all(); |
| 16 |
| 17 void set all(HTMLAllCollection value); |
| 18 |
| 15 String get bgColor(); | 19 String get bgColor(); |
| 16 | 20 |
| 17 void set bgColor(String value); | 21 void set bgColor(String value); |
| 18 | 22 |
| 19 String get compatMode(); | 23 String get compatMode(); |
| 20 | 24 |
| 21 String get designMode(); | 25 String get designMode(); |
| 22 | 26 |
| 23 void set designMode(String value); | 27 void set designMode(String value); |
| 24 | 28 |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 * Indicates the document is finished parsing but is still loading | 86 * Indicates the document is finished parsing but is still loading |
| 83 * subresources. | 87 * subresources. |
| 84 */ | 88 */ |
| 85 static final String INTERACTIVE = "interactive"; | 89 static final String INTERACTIVE = "interactive"; |
| 86 | 90 |
| 87 /** | 91 /** |
| 88 * Indicates the document and all subresources have been loaded. | 92 * Indicates the document and all subresources have been loaded. |
| 89 */ | 93 */ |
| 90 static final String COMPLETE = "complete"; | 94 static final String COMPLETE = "complete"; |
| 91 } | 95 } |
| OLD | NEW |