HTMLScriptElement.idl 858 B

1234567891011121314151617181920212223
  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=crossorigin] attribute DOMString? crossOrigin;
  11. [CEReactions, Reflect] attribute DOMString integrity;
  12. [CEReactions, Reflect=referrerpolicy] attribute DOMString referrerPolicy;
  13. static boolean supports(DOMString type);
  14. [CEReactions, Reflect] attribute DOMString charset;
  15. [CEReactions, Reflect] attribute DOMString event;
  16. [CEReactions, Reflect=for] attribute DOMString htmlFor;
  17. };