mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 10:12:25 -05:00
a2b40de0cc
Note that these aren't full implementations of the bindings. This mostly implements the low hanging fruit (namely, basic reflections) There are some attributes that should be USVString instead of DOMString. However, USVString is a slightly different definition of DOMString, so it should suffice for now.
12 lines
411 B
Text
12 lines
411 B
Text
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;
|
|
|
|
}
|