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

Unified Diff: third_party/WebKit/Source/core/html/HTMLScriptElement.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/HTMLScriptElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLScriptElement.idl b/third_party/WebKit/Source/core/html/HTMLScriptElement.idl
index 9b75e1ed58ce56b3074b091981cdccb9be864ffc..2b81eedcbc4fce7bda58eee13fa50302fe9a184d 100644
--- a/third_party/WebKit/Source/core/html/HTMLScriptElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLScriptElement.idl
@@ -20,24 +20,24 @@
// https://html.spec.whatwg.org/#the-script-element
interface HTMLScriptElement : HTMLElement {
- [Reflect, URL] attribute DOMString src;
- [Reflect] attribute DOMString type;
- [Reflect] attribute DOMString charset;
- attribute boolean async;
- [Reflect] attribute boolean defer;
- [Reflect, ReflectOnly=("anonymous","use-credentials"), ReflectEmpty="anonymous", ReflectInvalid="anonymous"] attribute DOMString? crossOrigin;
- attribute DOMString text;
+ [CEReactions, Reflect, URL] attribute DOMString src;
+ [CEReactions, Reflect] attribute DOMString type;
+ [CEReactions, Reflect] attribute DOMString charset;
+ [CEReactions] attribute boolean async;
+ [CEReactions, Reflect] attribute boolean defer;
+ [CEReactions, Reflect, ReflectOnly=("anonymous","use-credentials"), ReflectEmpty="anonymous", ReflectInvalid="anonymous"] attribute DOMString? crossOrigin;
+ [CEReactions] attribute DOMString text;
// obsolete members
// https://html.spec.whatwg.org/#HTMLScriptElement-partial
// TODO(foolip): The event and htmlFor attributes should return the empty
// string on getting, and do nothing on setting.
- [Reflect] attribute DOMString event;
- [Reflect=for] attribute DOMString htmlFor;
+ [CEReactions, Reflect] attribute DOMString event;
+ [CEReactions, Reflect=for] attribute DOMString htmlFor;
// Content Security Policy
// https://w3c.github.io/webappsec/specs/content-security-policy/#script-src-the-nonce-attribute
- [Reflect, RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute DOMString nonce;
+ [CEReactions, Reflect, RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute DOMString nonce;
// Subresource Integrity
// https://w3c.github.io/webappsec/specs/subresourceintegrity/#htmlscriptelement-1
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLQuoteElement.idl ('k') | third_party/WebKit/Source/core/html/HTMLSelectElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698