Skip to content

Commit

Permalink
Update idl for HTMLScriptElement
Browse files Browse the repository at this point in the history
whatwg/html#49 script nonce
whatwg/html#1984 script integrity
whatwg/html#2261 script noModule
  • Loading branch information
zcorpan committed Feb 2, 2017
1 parent 196a00c commit 67edbf9
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions html/dom/interfaces.html
Original file line number Diff line number Diff line change
Expand Up @@ -1838,14 +1838,19 @@ <h1>HTML IDL tests</h1>
void close(optional DOMString returnValue);
};

[HTMLConstructor]
interface HTMLScriptElement : HTMLElement {
attribute DOMString src;
attribute DOMString type;
attribute DOMString charset;
attribute boolean async;
attribute boolean defer;
attribute DOMString? crossOrigin;
attribute DOMString text;
[CEReactions] attribute USVString src;
[CEReactions] attribute DOMString type;
[CEReactions] attribute boolean noModule;
[CEReactions] attribute DOMString charset;
[CEReactions] attribute boolean async;
[CEReactions] attribute boolean defer;
[CEReactions] attribute DOMString? crossOrigin;
[CEReactions] attribute DOMString text;
[CEReactions] attribute DOMString nonce;
[CEReactions] attribute DOMString integrity;


// also has obsolete members
};
Expand Down

0 comments on commit 67edbf9

Please sign in to comment.