| Index: third_party/WebKit/Source/core/html/HTMLTableCellElement.idl
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLTableCellElement.idl b/third_party/WebKit/Source/core/html/HTMLTableCellElement.idl
|
| index eb531964f66630ddab99685445234db3e219e700..c029aef2c5980150fde538fe795c9264aacad39f 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLTableCellElement.idl
|
| +++ b/third_party/WebKit/Source/core/html/HTMLTableCellElement.idl
|
| @@ -21,31 +21,31 @@
|
| // https://html.spec.whatwg.org/#attributes-common-to-td-and-th-elements
|
|
|
| interface HTMLTableCellElement : HTMLElement {
|
| - attribute unsigned long colSpan;
|
| - attribute unsigned long rowSpan;
|
| + [CEReactions] attribute unsigned long colSpan;
|
| + [CEReactions] attribute unsigned long rowSpan;
|
| // TODO(foolip): headers should be a [PutForwards=value] readonly attribute
|
| // DOMTokenList.
|
| - [Reflect, TreatNullAs=NullString] attribute DOMString headers;
|
| + [CEReactions, Reflect, TreatNullAs=NullString] attribute DOMString headers;
|
| readonly attribute long cellIndex;
|
|
|
| // obsolete members
|
| // https://html.spec.whatwg.org/#HTMLTableCellElement-partial
|
| - [Reflect] attribute DOMString align;
|
| - [Reflect] attribute DOMString axis;
|
| - [Reflect] attribute DOMString height;
|
| - [Reflect] attribute DOMString width;
|
| + [CEReactions, Reflect] attribute DOMString align;
|
| + [CEReactions, Reflect] attribute DOMString axis;
|
| + [CEReactions, Reflect] attribute DOMString height;
|
| + [CEReactions, Reflect] attribute DOMString width;
|
|
|
| - [Reflect=char] attribute DOMString ch;
|
| - [Reflect=charoff] attribute DOMString chOff;
|
| - [Reflect] attribute boolean noWrap;
|
| - [Reflect] attribute DOMString vAlign;
|
| + [CEReactions, Reflect=char] attribute DOMString ch;
|
| + [CEReactions, Reflect=charoff] attribute DOMString chOff;
|
| + [CEReactions, Reflect] attribute boolean noWrap;
|
| + [CEReactions, Reflect] attribute DOMString vAlign;
|
|
|
| - [Reflect, TreatNullAs=EmptyString] attribute DOMString bgColor;
|
| + [CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString bgColor;
|
|
|
| // TODO(foolip): 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;
|
| + [CEReactions, Reflect] attribute DOMString abbr;
|
| + [CEReactions, Reflect] attribute DOMString scope;
|
| };
|
|
|