2022-02-15 22:40:51 +03:30
|
|
|
#import <HTML/HTMLElement.idl>
|
|
|
|
|
2022-10-07 16:45:09 -06:00
|
|
|
// https://html.spec.whatwg.org/multipage/scripting.html#htmlscriptelement
|
2023-09-03 15:26:16 +12:00
|
|
|
[Exposed=Window]
|
2020-07-27 05:04:26 +01:00
|
|
|
interface HTMLScriptElement : HTMLElement {
|
|
|
|
|
2023-03-23 03:48:52 -04:00
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
|
2023-03-01 01:45:18 +00:00
|
|
|
[CEReactions, Reflect] attribute DOMString src;
|
|
|
|
[CEReactions, Reflect] attribute DOMString type;
|
|
|
|
[CEReactions, Reflect=nomodule] attribute boolean noModule;
|
|
|
|
[CEReactions, Reflect] attribute boolean defer;
|
2023-05-10 17:08:07 -04:00
|
|
|
[CEReactions, Reflect=crossorigin] attribute DOMString? crossOrigin;
|
2023-03-01 01:45:18 +00:00
|
|
|
[CEReactions, Reflect] attribute DOMString integrity;
|
2023-05-10 17:08:07 -04:00
|
|
|
[CEReactions, Reflect=referrerpolicy] attribute DOMString referrerPolicy;
|
2020-07-27 05:04:26 +01:00
|
|
|
|
2021-09-03 21:01:10 +01:00
|
|
|
static boolean supports(DOMString type);
|
|
|
|
|
2023-03-01 01:45:18 +00:00
|
|
|
[CEReactions, Reflect] attribute DOMString charset;
|
|
|
|
[CEReactions, Reflect] attribute DOMString event;
|
|
|
|
[CEReactions, Reflect=for] attribute DOMString htmlFor;
|
2020-11-12 04:16:41 +00:00
|
|
|
|
2020-12-09 21:26:42 +00:00
|
|
|
};
|