Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(143)

Unified Diff: third_party/WebKit/Source/core/html/HTMLImageElement.idl

Issue 2043503002: Add [CEReactions] IDL attributes for Custom Elements V1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: yukishiino review Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLIFrameElement.idl ('k') | third_party/WebKit/Source/core/html/HTMLInputElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698