2022-02-15 22:40:51 +03:30
|
|
|
#import <HTML/HTMLElement.idl>
|
|
|
|
|
2022-10-07 16:45:09 -06:00
|
|
|
// https://html.spec.whatwg.org/multipage/semantics.html#htmllinkelement
|
|
|
|
[Exposed=Window]
|
2020-07-27 05:04:26 +01:00
|
|
|
interface HTMLLinkElement : HTMLElement {
|
|
|
|
|
|
|
|
[Reflect] attribute DOMString href;
|
|
|
|
[Reflect] attribute DOMString hreflang;
|
|
|
|
[Reflect] attribute DOMString integrity;
|
|
|
|
[Reflect] attribute DOMString media;
|
|
|
|
[Reflect] attribute DOMString rel;
|
|
|
|
[Reflect] attribute DOMString type;
|
|
|
|
[Reflect=imagesrcset] attribute DOMString imageSrcset;
|
|
|
|
[Reflect=imagesizes] attribute DOMString imageSizes;
|
2020-11-09 08:15:10 +00:00
|
|
|
[Reflect] attribute boolean disabled;
|
2020-07-27 05:04:26 +01:00
|
|
|
|
2020-11-12 04:16:41 +00:00
|
|
|
[Reflect] attribute DOMString charset;
|
|
|
|
[Reflect] attribute DOMString rev;
|
|
|
|
[Reflect] attribute DOMString target;
|
|
|
|
|
2020-12-09 21:26:42 +00:00
|
|
|
};
|