HTMLLinkElement.idl 895 B

1234567891011121314151617181920212223
  1. #import <HTML/HTMLElement.idl>
  2. // https://html.spec.whatwg.org/multipage/semantics.html#htmllinkelement
  3. [Exposed=Window]
  4. interface HTMLLinkElement : HTMLElement {
  5. [HTMLConstructor] constructor();
  6. [CEReactions, Reflect] attribute DOMString href;
  7. [CEReactions, Reflect] attribute DOMString hreflang;
  8. [CEReactions, Reflect] attribute DOMString integrity;
  9. [CEReactions, Reflect] attribute DOMString media;
  10. [CEReactions, Reflect] attribute DOMString rel;
  11. [CEReactions, Reflect] attribute DOMString type;
  12. [CEReactions, Reflect=imagesrcset] attribute DOMString imageSrcset;
  13. [CEReactions, Reflect=imagesizes] attribute DOMString imageSizes;
  14. [CEReactions, Reflect] attribute boolean disabled;
  15. [CEReactions, Reflect] attribute DOMString charset;
  16. [CEReactions, Reflect] attribute DOMString rev;
  17. [CEReactions, Reflect] attribute DOMString target;
  18. };