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

Unified Diff: core/html/HTMLTableCellElement.idl

Issue 1660113002: Updated to Chrome 45 (2454) moved from SVN to git. Base URL: https://github.com/dart-lang/webcore.git@roll_45
Patch Set: Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « core/html/HTMLTableCaptionElement.idl ('k') | core/html/HTMLTableColElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/html/HTMLTableCellElement.idl
diff --git a/core/html/HTMLTableCellElement.idl b/core/html/HTMLTableCellElement.idl
index b201938b86ad9efd27cafb25549e08246278e5a8..7a9a8d8e8c0f325729569e267b45f6befa9efc1b 100644
--- a/core/html/HTMLTableCellElement.idl
+++ b/core/html/HTMLTableCellElement.idl
@@ -18,20 +18,34 @@
* Boston, MA 02110-1301, USA.
*/
+// https://html.spec.whatwg.org/#attributes-common-to-td-and-th-elements
+
interface HTMLTableCellElement : HTMLElement {
+ attribute unsigned long colSpan;
+ attribute unsigned long rowSpan;
+ // TODO(philipj): headers should be a [PutForwards=value] readonly attribute
+ // DOMSettableTokenList.
+ [Reflect, TreatNullAs=NullString] attribute DOMString headers;
readonly attribute long cellIndex;
- [Reflect] attribute DOMString abbr;
+
+ // obsolete members
+ // https://html.spec.whatwg.org/#HTMLTableCellElement-partial
[Reflect] attribute DOMString align;
[Reflect] attribute DOMString axis;
- [Reflect, TreatNullAs=EmptyString] attribute DOMString bgColor;
+ [Reflect] attribute DOMString height;
+ [Reflect] attribute DOMString width;
+
[Reflect=char] attribute DOMString ch;
[Reflect=charoff] attribute DOMString chOff;
- attribute long colSpan;
- [Reflect, TreatNullAs=NullString] attribute DOMString headers;
- [Reflect] attribute DOMString height;
[Reflect] attribute boolean noWrap;
- attribute long rowSpan;
- [Reflect] attribute DOMString scope;
[Reflect] attribute DOMString vAlign;
- [Reflect] attribute DOMString width;
+
+ [Reflect, TreatNullAs=EmptyString] attribute DOMString bgColor;
+
+ // TODO(philipj): The spec has HTMLTableHeaderCellElement and
+ // HTMLTableDataCellElement interfaces for the th and td elements
+ // respectively. HTMLTableHeaderCellElement has the abbr and scope
+ // attributes, while HTMLTableDataCellElement has only abbr.
+ [Reflect] attribute DOMString abbr;
+ [Reflect] attribute DOMString scope;
};
« no previous file with comments | « core/html/HTMLTableCaptionElement.idl ('k') | core/html/HTMLTableColElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698