HTMLScriptElement.idl 441 B

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