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