HTMLScriptElement.idl 473 B

1234567891011121314151617
  1. #import <HTML/HTMLElement.idl>
  2. interface HTMLScriptElement : HTMLElement {
  3. [Reflect] attribute DOMString src;
  4. [Reflect] attribute DOMString type;
  5. [Reflect=nomodule] attribute boolean noModule;
  6. [Reflect] attribute boolean defer;
  7. [Reflect] attribute DOMString integrity;
  8. static boolean supports(DOMString type);
  9. [Reflect] attribute DOMString charset;
  10. [Reflect] attribute DOMString event;
  11. [Reflect=for] attribute DOMString htmlFor;
  12. };