HTMLLinkElement.idl 611 B

12345678910111213141516171819
  1. #import <HTML/HTMLElement.idl>
  2. interface HTMLLinkElement : HTMLElement {
  3. [Reflect] attribute DOMString href;
  4. [Reflect] attribute DOMString hreflang;
  5. [Reflect] attribute DOMString integrity;
  6. [Reflect] attribute DOMString media;
  7. [Reflect] attribute DOMString rel;
  8. [Reflect] attribute DOMString type;
  9. [Reflect=imagesrcset] attribute DOMString imageSrcset;
  10. [Reflect=imagesizes] attribute DOMString imageSizes;
  11. [Reflect] attribute boolean disabled;
  12. [Reflect] attribute DOMString charset;
  13. [Reflect] attribute DOMString rev;
  14. [Reflect] attribute DOMString target;
  15. };