summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/HTML/HTMLScriptElement.idl
blob: 370dadd29a66fdc3c416e415358e53ef3c3b072c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
interface HTMLScriptElement : HTMLElement {

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

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

};