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

Side by Side Diff: lib/html/doc/interface/TableElement.dartdoc

Issue 10544064: Add dummy dart:html library for documentation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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
(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:
6 // This file contains documentation that is merged into the real source.
7 // Do not make code changes here.
8
9 /// @domName HTMLTableElement
10 interface TableElement extends Element default _Elements {
11
12 TableElement();
13
14 /** @domName HTMLTableElement.align */
15 String align;
16
17 /** @domName HTMLTableElement.bgColor */
18 String bgColor;
19
20 /** @domName HTMLTableElement.border */
21 String border;
22
23 /** @domName HTMLTableElement.caption */
24 TableCaptionElement caption;
25
26 /** @domName HTMLTableElement.cellPadding */
27 String cellPadding;
28
29 /** @domName HTMLTableElement.cellSpacing */
30 String cellSpacing;
31
32 /** @domName HTMLTableElement.frame */
33 String frame;
34
35 /** @domName HTMLTableElement.rows */
36 final HTMLCollection rows;
37
38 /** @domName HTMLTableElement.rules */
39 String rules;
40
41 /** @domName HTMLTableElement.summary */
42 String summary;
43
44 /** @domName HTMLTableElement.tBodies */
45 final HTMLCollection tBodies;
46
47 /** @domName HTMLTableElement.tFoot */
48 TableSectionElement tFoot;
49
50 /** @domName HTMLTableElement.tHead */
51 TableSectionElement tHead;
52
53 /** @domName HTMLTableElement.width */
54 String width;
55
56 /** @domName HTMLTableElement.createCaption */
57 Element createCaption();
58
59 /** @domName HTMLTableElement.createTBody */
60 Element createTBody();
61
62 /** @domName HTMLTableElement.createTFoot */
63 Element createTFoot();
64
65 /** @domName HTMLTableElement.createTHead */
66 Element createTHead();
67
68 /** @domName HTMLTableElement.deleteCaption */
69 void deleteCaption();
70
71 /** @domName HTMLTableElement.deleteRow */
72 void deleteRow(int index);
73
74 /** @domName HTMLTableElement.deleteTFoot */
75 void deleteTFoot();
76
77 /** @domName HTMLTableElement.deleteTHead */
78 void deleteTHead();
79
80 /** @domName HTMLTableElement.insertRow */
81 Element insertRow(int index);
82 }
OLDNEW
« no previous file with comments | « lib/html/doc/interface/TableColElement.dartdoc ('k') | lib/html/doc/interface/TableRowElement.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698