| Index: third_party/WebKit/Source/core/html/HTMLIFrameElement.idl
 | 
| diff --git a/third_party/WebKit/Source/core/html/HTMLIFrameElement.idl b/third_party/WebKit/Source/core/html/HTMLIFrameElement.idl
 | 
| index 5e7c25089b4759ab3d9fe6cfdd3a0e627f8b5648..d3d3a9ff19ebe916d1c2b5ab9f20b0e309811647 100644
 | 
| --- a/third_party/WebKit/Source/core/html/HTMLIFrameElement.idl
 | 
| +++ b/third_party/WebKit/Source/core/html/HTMLIFrameElement.idl
 | 
| @@ -21,27 +21,27 @@
 | 
|  // https://html.spec.whatwg.org/#the-iframe-element
 | 
|  
 | 
|  interface HTMLIFrameElement : HTMLElement {
 | 
| -    [Reflect, URL] attribute DOMString src;
 | 
| -    [Reflect] attribute DOMString srcdoc;
 | 
| -    [Reflect] attribute DOMString name;
 | 
| -    [PutForwards=value] readonly attribute DOMTokenList sandbox;
 | 
| +    [CEReactions, Reflect, URL] attribute DOMString src;
 | 
| +    [CEReactions, Reflect] attribute DOMString srcdoc;
 | 
| +    [CEReactions, Reflect] attribute DOMString name;
 | 
| +    [CEReactions, PutForwards=value] readonly attribute DOMTokenList sandbox;
 | 
|      // Note: The seamless attribute was once supported, but was removed.
 | 
| -    [Reflect] attribute boolean allowFullscreen;
 | 
| -    [Reflect] attribute DOMString width;
 | 
| -    [Reflect] attribute DOMString height;
 | 
| +    [CEReactions, Reflect] attribute boolean allowFullscreen;
 | 
| +    [CEReactions, Reflect] attribute DOMString width;
 | 
| +    [CEReactions, Reflect] attribute DOMString height;
 | 
|      [CheckSecurity=ReturnValue] readonly attribute Document? contentDocument;
 | 
|      readonly attribute Window? contentWindow;
 | 
|      [CheckSecurity=ReturnValue, RaisesException] Document? getSVGDocument();
 | 
| -    [Reflect, ReflectOnly=("","no-referrer","origin","no-referrer-when-downgrade","origin-when-cross-origin","unsafe-url"), ReflectMissing="", ReflectInvalid=""] attribute DOMString referrerpolicy;
 | 
| +    [CEReactions, Reflect, ReflectOnly=("","no-referrer","origin","no-referrer-when-downgrade","origin-when-cross-origin","unsafe-url"), ReflectMissing="", ReflectInvalid=""] attribute DOMString referrerpolicy;
 | 
|  
 | 
|  
 | 
|      // obsolete members
 | 
|      // https://html.spec.whatwg.org/#HTMLIFrameElement-partial
 | 
| -    [Reflect] attribute DOMString align;
 | 
| -    [Reflect] attribute DOMString scrolling;
 | 
| -    [Reflect] attribute DOMString frameBorder;
 | 
| -    [Reflect, URL] attribute DOMString longDesc;
 | 
| +    [CEReactions, Reflect] attribute DOMString align;
 | 
| +    [CEReactions, Reflect] attribute DOMString scrolling;
 | 
| +    [CEReactions, Reflect] attribute DOMString frameBorder;
 | 
| +    [CEReactions, Reflect, URL] attribute DOMString longDesc;
 | 
|  
 | 
| -    [Reflect, TreatNullAs=EmptyString] attribute DOMString marginHeight;
 | 
| -    [Reflect, TreatNullAs=EmptyString] attribute DOMString marginWidth;
 | 
| +    [CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString marginHeight;
 | 
| +    [CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString marginWidth;
 | 
|  };
 | 
| 
 |