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