Serenity Operating System
at master 19 lines 565 B view raw
1#import <HTML/HTMLElement.idl> 2 3// https://html.spec.whatwg.org/multipage/scripting.html#htmlscriptelement 4[Exposed=Window] 5interface HTMLScriptElement : HTMLElement { 6 7 [Reflect] attribute DOMString src; 8 [Reflect] attribute DOMString type; 9 [Reflect=nomodule] attribute boolean noModule; 10 [Reflect] attribute boolean defer; 11 [Reflect] attribute DOMString integrity; 12 13 static boolean supports(DOMString type); 14 15 [Reflect] attribute DOMString charset; 16 [Reflect] attribute DOMString event; 17 [Reflect=for] attribute DOMString htmlFor; 18 19};