| 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 faa2444abaf174aa60315b39d47744c248dc3bf1..1f16a62be874954ac1d740aedd8fd3b2c6bbbecc 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLScriptElement.idl
|
| +++ b/third_party/WebKit/Source/core/html/HTMLScriptElement.idl
|
| @@ -23,7 +23,7 @@ interface HTMLScriptElement : HTMLElement {
|
| [CEReactions, Reflect, URL] attribute DOMString src;
|
| [CEReactions, Reflect] attribute DOMString type;
|
| [CEReactions, Reflect] attribute DOMString charset;
|
| - [CEReactions] attribute boolean async;
|
| + [Measure, 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;
|
| @@ -37,9 +37,9 @@ interface HTMLScriptElement : HTMLElement {
|
|
|
| // Content Security Policy
|
| // https://w3c.github.io/webappsec/specs/content-security-policy/#script-src-the-nonce-attribute
|
| - [CEReactions, Reflect, RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute DOMString nonce;
|
| + [Measure, CEReactions, Reflect, RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute DOMString nonce;
|
|
|
| // Subresource Integrity
|
| // https://w3c.github.io/webappsec-subresource-integrity/#HTMLScriptElement
|
| - [Reflect] attribute DOMString integrity;
|
| + [Measure, Reflect] attribute DOMString integrity;
|
| };
|
|
|