| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | |
| 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. | |
| 4 | |
| 5 // WARNING: Do not edit - generated code. | |
| 6 | |
| 7 interface HTMLDocument extends Document { | |
| 8 | |
| 9 final Element activeElement; | |
| 10 | |
| 11 String alinkColor; | |
| 12 | |
| 13 HTMLAllCollection all; | |
| 14 | |
| 15 String bgColor; | |
| 16 | |
| 17 final String compatMode; | |
| 18 | |
| 19 String designMode; | |
| 20 | |
| 21 String dir; | |
| 22 | |
| 23 final HTMLCollection embeds; | |
| 24 | |
| 25 String fgColor; | |
| 26 | |
| 27 String linkColor; | |
| 28 | |
| 29 final HTMLCollection plugins; | |
| 30 | |
| 31 final HTMLCollection scripts; | |
| 32 | |
| 33 String vlinkColor; | |
| 34 | |
| 35 void captureEvents(); | |
| 36 | |
| 37 void clear(); | |
| 38 | |
| 39 void close(); | |
| 40 | |
| 41 bool hasFocus(); | |
| 42 | |
| 43 void open(); | |
| 44 | |
| 45 void releaseEvents(); | |
| 46 | |
| 47 void write(String text); | |
| 48 | |
| 49 void writeln(String text); | |
| 50 } | |
| OLD | NEW |