| Index: third_party/WebKit/Source/core/html/HTMLTableRowElement.idl
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLTableRowElement.idl b/third_party/WebKit/Source/core/html/HTMLTableRowElement.idl
|
| index bba0de5539c4898b2c3607c1eca41df7e2fd68d4..5b5707dcaf82778711871f922b781e9c80f7ce70 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLTableRowElement.idl
|
| +++ b/third_party/WebKit/Source/core/html/HTMLTableRowElement.idl
|
| @@ -24,15 +24,15 @@ interface HTMLTableRowElement : HTMLElement {
|
| readonly attribute long rowIndex;
|
| readonly attribute long sectionRowIndex;
|
| readonly attribute HTMLCollection cells;
|
| - [RaisesException] HTMLElement insertCell(optional long index = -1);
|
| - [RaisesException] void deleteCell(long index);
|
| + [CEReactions, RaisesException] HTMLElement insertCell(optional long index = -1);
|
| + [CEReactions, RaisesException] void deleteCell(long index);
|
|
|
| // obsolete members
|
| // https://html.spec.whatwg.org/#HTMLTableRowElement-partial
|
| - [Reflect] attribute DOMString align;
|
| - [Reflect=char] attribute DOMString ch;
|
| - [Reflect=charoff] attribute DOMString chOff;
|
| - [Reflect] attribute DOMString vAlign;
|
| + [CEReactions, Reflect] attribute DOMString align;
|
| + [CEReactions, Reflect=char] attribute DOMString ch;
|
| + [CEReactions, Reflect=charoff] attribute DOMString chOff;
|
| + [CEReactions, Reflect] attribute DOMString vAlign;
|
|
|
| - [Reflect, TreatNullAs=EmptyString] attribute DOMString bgColor;
|
| + [CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString bgColor;
|
| };
|
|
|