LibWeb: Implement HTMLLinkElement.sizes

This commit is contained in:
Shannon Booth 2024-11-18 07:00:59 +13:00 committed by Andreas Kling
commit a4b43cae9a
Notes: github-actions[bot] 2024-11-17 21:13:53 +00:00
4 changed files with 16 additions and 4 deletions

View file

@ -18,7 +18,7 @@ interface HTMLLinkElement : HTMLElement {
[CEReactions, Reflect] attribute DOMString integrity;
[CEReactions, Reflect] attribute DOMString hreflang;
[CEReactions, Reflect] attribute DOMString type;
[FIXME, SameObject, PutForwards=value] readonly attribute DOMTokenList sizes;
[SameObject, PutForwards=value] readonly attribute DOMTokenList sizes;
[CEReactions, Reflect=imagesrcset] attribute USVString imageSrcset;
[CEReactions, Reflect=imagesizes] attribute DOMString imageSizes;
[CEReactions, Reflect=referrerpolicy, Enumerated=ReferrerPolicy] attribute DOMString referrerPolicy;