summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLScriptElement.idl
blob: 6571a9f3c7069a95a54ac86b566888367eb9d931 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#import <HTML/HTMLElement.idl>

interface HTMLScriptElement : HTMLElement {

    [Reflect] attribute DOMString src;
    [Reflect] attribute DOMString type;
    [Reflect=nomodule] attribute boolean noModule;
    [Reflect] attribute boolean defer;
    [Reflect] attribute DOMString integrity;

    static boolean supports(DOMString type);

    [Reflect] attribute DOMString charset;
    [Reflect] attribute DOMString event;
    [Reflect=for] attribute DOMString htmlFor;

};