| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 interface ObjectElement extends Element { | |
| 6 | |
| 7 String get align(); | |
| 8 | |
| 9 void set align(String value); | |
| 10 | |
| 11 String get archive(); | |
| 12 | |
| 13 void set archive(String value); | |
| 14 | |
| 15 String get border(); | |
| 16 | |
| 17 void set border(String value); | |
| 18 | |
| 19 String get code(); | |
| 20 | |
| 21 void set code(String value); | |
| 22 | |
| 23 String get codeBase(); | |
| 24 | |
| 25 void set codeBase(String value); | |
| 26 | |
| 27 String get codeType(); | |
| 28 | |
| 29 void set codeType(String value); | |
| 30 | |
| 31 Document get contentDocument(); | |
| 32 | |
| 33 String get data(); | |
| 34 | |
| 35 void set data(String value); | |
| 36 | |
| 37 bool get declare(); | |
| 38 | |
| 39 void set declare(bool value); | |
| 40 | |
| 41 FormElement get form(); | |
| 42 | |
| 43 String get height(); | |
| 44 | |
| 45 void set height(String value); | |
| 46 | |
| 47 int get hspace(); | |
| 48 | |
| 49 void set hspace(int value); | |
| 50 | |
| 51 String get name(); | |
| 52 | |
| 53 void set name(String value); | |
| 54 | |
| 55 String get standby(); | |
| 56 | |
| 57 void set standby(String value); | |
| 58 | |
| 59 String get type(); | |
| 60 | |
| 61 void set type(String value); | |
| 62 | |
| 63 String get useMap(); | |
| 64 | |
| 65 void set useMap(String value); | |
| 66 | |
| 67 String get validationMessage(); | |
| 68 | |
| 69 ValidityState get validity(); | |
| 70 | |
| 71 int get vspace(); | |
| 72 | |
| 73 void set vspace(int value); | |
| 74 | |
| 75 String get width(); | |
| 76 | |
| 77 void set width(String value); | |
| 78 | |
| 79 bool get willValidate(); | |
| 80 | |
| 81 bool checkValidity(); | |
| 82 | |
| 83 void setCustomValidity(String error); | |
| 84 | |
| 85 // Don't support getSVGDocument because the content document won't have all | |
| 86 // the necessary patches to the prototype hierarchy under Frog. | |
| 87 } | |
| OLD | NEW |