HTMLScriptElement.idl 707 B

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