Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(110)

Side by Side Diff: client/dom/generated/src/interface/HTMLTableElement.dart

Issue 9341007: Use 'field' syntax in dart:dom interfaces. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 HTMLTableElement extends HTMLElement { 7 interface HTMLTableElement extends HTMLElement {
8 8
9 String get align(); 9 String align;
10 10
11 void set align(String value); 11 String bgColor;
12 12
13 String get bgColor(); 13 String border;
14 14
15 void set bgColor(String value); 15 HTMLTableCaptionElement caption;
16 16
17 String get border(); 17 String cellPadding;
18 18
19 void set border(String value); 19 String cellSpacing;
20 20
21 HTMLTableCaptionElement get caption(); 21 String frame;
22 22
23 void set caption(HTMLTableCaptionElement value); 23 final HTMLCollection rows;
24 24
25 String get cellPadding(); 25 String rules;
26 26
27 void set cellPadding(String value); 27 String summary;
28 28
29 String get cellSpacing(); 29 final HTMLCollection tBodies;
30 30
31 void set cellSpacing(String value); 31 HTMLTableSectionElement tFoot;
32 32
33 String get frame(); 33 HTMLTableSectionElement tHead;
34 34
35 void set frame(String value); 35 String width;
36
37 HTMLCollection 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 HTMLCollection get tBodies();
48
49 HTMLTableSectionElement get tFoot();
50
51 void set tFoot(HTMLTableSectionElement value);
52
53 HTMLTableSectionElement get tHead();
54
55 void set tHead(HTMLTableSectionElement value);
56
57 String get width();
58
59 void set width(String value);
60 36
61 HTMLElement createCaption(); 37 HTMLElement createCaption();
62 38
63 HTMLElement createTFoot(); 39 HTMLElement createTFoot();
64 40
65 HTMLElement createTHead(); 41 HTMLElement createTHead();
66 42
67 void deleteCaption(); 43 void deleteCaption();
68 44
69 void deleteRow(int index); 45 void deleteRow(int index);
70 46
71 void deleteTFoot(); 47 void deleteTFoot();
72 48
73 void deleteTHead(); 49 void deleteTHead();
74 50
75 HTMLElement insertRow(int index); 51 HTMLElement insertRow(int index);
76 } 52 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698