| 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
|
|
|