| 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 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 String get dir(); | 29 String get dir(); |
| 30 | 30 |
| 31 void set dir(String value); | 31 void set dir(String value); |
| 32 | 32 |
| 33 HTMLCollection get embeds(); | 33 HTMLCollection get embeds(); |
| 34 | 34 |
| 35 String get fgColor(); | 35 String get fgColor(); |
| 36 | 36 |
| 37 void set fgColor(String value); | 37 void set fgColor(String value); |
| 38 | 38 |
| 39 int get height(); |
| 40 |
| 39 String get linkColor(); | 41 String get linkColor(); |
| 40 | 42 |
| 41 void set linkColor(String value); | 43 void set linkColor(String value); |
| 42 | 44 |
| 43 HTMLCollection get plugins(); | 45 HTMLCollection get plugins(); |
| 44 | 46 |
| 45 HTMLCollection get scripts(); | 47 HTMLCollection get scripts(); |
| 46 | 48 |
| 47 String get vlinkColor(); | 49 String get vlinkColor(); |
| 48 | 50 |
| 49 void set vlinkColor(String value); | 51 void set vlinkColor(String value); |
| 50 | 52 |
| 53 int get width(); |
| 54 |
| 51 void captureEvents(); | 55 void captureEvents(); |
| 52 | 56 |
| 53 void clear(); | 57 void clear(); |
| 54 | 58 |
| 55 void close(); | 59 void close(); |
| 56 | 60 |
| 57 bool hasFocus(); | 61 bool hasFocus(); |
| 58 | 62 |
| 59 void open(); | 63 void open(); |
| 60 | 64 |
| (...skipping 21 matching lines...) Expand all 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 |