| Index: third_party/WebKit/Source/core/html/HTMLImageElement.idl
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLImageElement.idl b/third_party/WebKit/Source/core/html/HTMLImageElement.idl
|
| index 9f045ae2f4e338880f581abe625c066a899a79b5..7223ad56ddc87fa419502eb983eead42addfe502 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLImageElement.idl
|
| +++ b/third_party/WebKit/Source/core/html/HTMLImageElement.idl
|
| @@ -26,31 +26,31 @@
|
| ConstructorCallWith=Document,
|
| NamedConstructor=Image(optional long width, optional long height),
|
| ] interface HTMLImageElement : HTMLElement {
|
| - [Reflect] attribute DOMString alt;
|
| - [Reflect, URL] attribute DOMString src;
|
| - [Reflect] attribute DOMString srcset;
|
| - [Reflect] attribute DOMString sizes;
|
| - [Reflect, ReflectOnly=("anonymous","use-credentials"), ReflectEmpty="anonymous", ReflectInvalid="anonymous"] attribute DOMString? crossOrigin;
|
| - [Reflect] attribute DOMString useMap;
|
| - [Reflect] attribute boolean isMap;
|
| - attribute long width;
|
| - attribute long height;
|
| + [CEReactions, Reflect] attribute DOMString alt;
|
| + [CEReactions, Reflect, URL] attribute DOMString src;
|
| + [CEReactions, Reflect] attribute DOMString srcset;
|
| + [CEReactions, Reflect] attribute DOMString sizes;
|
| + [CEReactions, Reflect, ReflectOnly=("anonymous","use-credentials"), ReflectEmpty="anonymous", ReflectInvalid="anonymous"] attribute DOMString? crossOrigin;
|
| + [CEReactions, Reflect] attribute DOMString useMap;
|
| + [CEReactions, Reflect] attribute boolean isMap;
|
| + [CEReactions] attribute long width;
|
| + [CEReactions] attribute long height;
|
| readonly attribute long naturalWidth;
|
| readonly attribute long naturalHeight;
|
| readonly attribute boolean complete;
|
| readonly attribute DOMString currentSrc;
|
| - [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/#HTMLImageElement-partial
|
| - [Reflect] attribute DOMString name;
|
| - [Reflect, URL] attribute DOMString lowsrc;
|
| - [Reflect] attribute DOMString align;
|
| - [Reflect] attribute long hspace;
|
| - [Reflect] attribute long vspace;
|
| - [Reflect, URL] attribute DOMString longDesc;
|
| + [CEReactions, Reflect] attribute DOMString name;
|
| + [CEReactions, Reflect, URL] attribute DOMString lowsrc;
|
| + [CEReactions, Reflect] attribute DOMString align;
|
| + [CEReactions, Reflect] attribute long hspace;
|
| + [CEReactions, Reflect] attribute long vspace;
|
| + [CEReactions, Reflect, URL] attribute DOMString longDesc;
|
|
|
| - [Reflect, TreatNullAs=EmptyString] attribute DOMString border;
|
| + [CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString border;
|
|
|
| // CSSOM View Module
|
| // http://dev.w3.org/csswg/cssom-view/#extensions-to-the-htmlimageelement-interface
|
|
|