HTMLScriptElement.idl 565 B

12345678910111213141516171819
  1. #import <HTML/HTMLElement.idl>
  2. // https://html.spec.whatwg.org/multipage/scripting.html#htmlscriptelement
  3. [Exposed=Window]
  4. interface HTMLScriptElement : HTMLElement {
  5. [Reflect] attribute DOMString src;
  6. [Reflect] attribute DOMString type;
  7. [Reflect=nomodule] attribute boolean noModule;
  8. [Reflect] attribute boolean defer;
  9. [Reflect] attribute DOMString integrity;
  10. static boolean supports(DOMString type);
  11. [Reflect] attribute DOMString charset;
  12. [Reflect] attribute DOMString event;
  13. [Reflect=for] attribute DOMString htmlFor;
  14. };