| Index: third_party/WebKit/Source/core/html/HTMLTableSectionElement.idl
 | 
| diff --git a/third_party/WebKit/Source/core/html/HTMLTableSectionElement.idl b/third_party/WebKit/Source/core/html/HTMLTableSectionElement.idl
 | 
| index f0f19cf44e9051216b9bd554a2761a3293550538..36c47bfdd5349d2cfe0387e9255b2fba5270b2ae 100644
 | 
| --- a/third_party/WebKit/Source/core/html/HTMLTableSectionElement.idl
 | 
| +++ b/third_party/WebKit/Source/core/html/HTMLTableSectionElement.idl
 | 
| @@ -24,13 +24,13 @@
 | 
|  
 | 
|  interface HTMLTableSectionElement : HTMLElement {
 | 
|      readonly attribute HTMLCollection rows;
 | 
| -    [RaisesException] HTMLElement insertRow(optional long index = -1);
 | 
| -    [RaisesException] void deleteRow(long index);
 | 
| +    [CEReactions, RaisesException] HTMLElement insertRow(optional long index = -1);
 | 
| +    [CEReactions, RaisesException] void deleteRow(long index);
 | 
|  
 | 
|      // obsolete members
 | 
|      // https://html.spec.whatwg.org/#HTMLTableSectionElement-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;
 | 
|  };
 | 
| 
 |