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

Unified Diff: third_party/WebKit/Source/core/html/HTMLAnchorElement.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/HTMLAnchorElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLAnchorElement.idl b/third_party/WebKit/Source/core/html/HTMLAnchorElement.idl
index 7cfbe23de8bc76ec9cc455a2c552f16be0e2fcd9..ea921f685eff6463246c1b8bd8a19b2f04203245 100644
--- a/third_party/WebKit/Source/core/html/HTMLAnchorElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLAnchorElement.idl
@@ -21,25 +21,25 @@
// https://html.spec.whatwg.org/#the-a-element
interface HTMLAnchorElement : HTMLElement {
- [Reflect] attribute DOMString target;
- [Reflect] attribute DOMString download;
+ [CEReactions, Reflect] attribute DOMString target;
+ [CEReactions, Reflect] attribute DOMString download;
// FIXME: ping should be a DOMTokenList.
- [Reflect] attribute DOMString ping;
- [Reflect] attribute DOMString rel;
+ [CEReactions, Reflect] attribute DOMString ping;
+ [CEReactions, Reflect] attribute DOMString rel;
// FIXME: readonly attribute DOMTokenList relList;
- [Reflect] attribute DOMString hreflang;
- [Reflect] attribute DOMString type;
- [Reflect, ReflectOnly=("","no-referrer","origin","no-referrer-when-downgrade","origin-when-cross-origin","unsafe-url"), ReflectMissing="", ReflectInvalid=""] attribute DOMString referrerpolicy;
+ [CEReactions, Reflect] attribute DOMString hreflang;
+ [CEReactions, Reflect] attribute DOMString type;
+ [CEReactions, Reflect, ReflectOnly=("","no-referrer","origin","no-referrer-when-downgrade","origin-when-cross-origin","unsafe-url"), ReflectMissing="", ReflectInvalid=""] attribute DOMString referrerpolicy;
- [ImplementedAs=textContent] attribute DOMString text;
+ [CEReactions, ImplementedAs=textContent] attribute DOMString text;
// obsolete members
// https://html.spec.whatwg.org/#HTMLAnchorElement-partial
- [Reflect] attribute DOMString coords;
- [Reflect] attribute DOMString charset;
- [Reflect] attribute DOMString name;
- [Reflect] attribute DOMString rev;
- [Reflect] attribute DOMString shape;
+ [CEReactions, Reflect] attribute DOMString coords;
+ [CEReactions, Reflect] attribute DOMString charset;
+ [CEReactions, Reflect] attribute DOMString name;
+ [CEReactions, Reflect] attribute DOMString rev;
+ [CEReactions, Reflect] attribute DOMString shape;
};
HTMLAnchorElement implements HTMLHyperlinkElementUtils;
« no previous file with comments | « third_party/WebKit/Source/core/editing/Selection.idl ('k') | third_party/WebKit/Source/core/html/HTMLAreaElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698