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

Unified Diff: third_party/WebKit/Source/core/html/HTMLLinkElement.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/HTMLLinkElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLLinkElement.idl b/third_party/WebKit/Source/core/html/HTMLLinkElement.idl
index 55395e8402adae1b8265a867e52aa3c5fc329ee4..112a4f001037c9b958bcf42fc8e1d5600f9fc9c8 100644
--- a/third_party/WebKit/Source/core/html/HTMLLinkElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLLinkElement.idl
@@ -26,20 +26,20 @@ interface HTMLLinkElement : HTMLElement {
// https://www.w3.org/Bugs/Public/show_bug.cgi?id=14703
[Reflect, Measure] attribute boolean disabled;
[Reflect, URL] attribute DOMString href;
- [Reflect, ReflectOnly=("anonymous","use-credentials"), ReflectEmpty="anonymous", ReflectInvalid="anonymous"] attribute DOMString? crossOrigin;
- [Reflect] attribute DOMString rel;
- [RuntimeEnabled=LinkPreload, PutForwards=value] readonly attribute DOMTokenList relList;
- [Reflect] attribute DOMString media;
- [Reflect] attribute DOMString hreflang;
- [Reflect] attribute DOMString type;
+ [CEReactions, Reflect, ReflectOnly=("anonymous","use-credentials"), ReflectEmpty="anonymous", ReflectInvalid="anonymous"] attribute DOMString? crossOrigin;
+ [CEReactions, Reflect] attribute DOMString rel;
+ [RuntimeEnabled=LinkPreload, CEReactions, PutForwards=value] readonly attribute DOMTokenList relList;
+ [CEReactions, Reflect] attribute DOMString media;
+ [CEReactions, Reflect] attribute DOMString hreflang;
+ [CEReactions, Reflect] attribute DOMString type;
[Reflect, RuntimeEnabled=LinkPreload] attribute DOMString as;
- [PutForwards=value] readonly attribute DOMTokenList sizes;
+ [CEReactions, PutForwards=value] readonly attribute DOMTokenList sizes;
// obsolete members
// https://html.spec.whatwg.org/#HTMLLinkElement-partial
- [Reflect] attribute DOMString charset;
- [Reflect] attribute DOMString rev;
- [Reflect] attribute DOMString target;
+ [CEReactions, Reflect] attribute DOMString charset;
+ [CEReactions, Reflect] attribute DOMString rev;
+ [CEReactions, Reflect] attribute DOMString target;
// HTMLLinkElement implements LinkStyle
// http://dev.w3.org/csswg/cssom/#the-linkstyle-interface
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLLegendElement.idl ('k') | third_party/WebKit/Source/core/html/HTMLMapElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698