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 // WARNING: Do not edit - generated code. | |
6 | |
7 interface TableElement extends Element { | |
8 | |
9 String get align(); | |
10 | |
11 void set align(String value); | |
12 | |
13 String get bgColor(); | |
14 | |
15 void set bgColor(String value); | |
16 | |
17 String get border(); | |
18 | |
19 void set border(String value); | |
20 | |
21 TableCaptionElement get caption(); | |
22 | |
23 void set caption(TableCaptionElement value); | |
24 | |
25 String get cellPadding(); | |
26 | |
27 void set cellPadding(String value); | |
28 | |
29 String get cellSpacing(); | |
30 | |
31 void set cellSpacing(String value); | |
32 | |
33 String get frame(); | |
34 | |
35 void set frame(String value); | |
36 | |
37 ElementList get rows(); | |
38 | |
39 String get rules(); | |
40 | |
41 void set rules(String value); | |
42 | |
43 String get summary(); | |
44 | |
45 void set summary(String value); | |
46 | |
47 ElementList get tBodies(); | |
48 | |
49 TableSectionElement get tFoot(); | |
50 | |
51 void set tFoot(TableSectionElement value); | |
52 | |
53 TableSectionElement get tHead(); | |
54 | |
55 void set tHead(TableSectionElement value); | |
56 | |
57 String get width(); | |
58 | |
59 void set width(String value); | |
60 | |
61 Element createCaption(); | |
62 | |
63 Element createTFoot(); | |
64 | |
65 Element createTHead(); | |
66 | |
67 void deleteCaption(); | |
68 | |
69 void deleteRow(int index); | |
70 | |
71 void deleteTFoot(); | |
72 | |
73 void deleteTHead(); | |
74 | |
75 Element insertRow(int index); | |
76 } | |
OLD | NEW |