HTMLLinkElement.idl 701 B

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