LibWeb: Implement HTMLLinkElement.fetchPriority

This commit is contained in:
Jamie Mansfield 2024-05-30 21:33:43 +01:00 committed by Tim Ledbetter
commit 735859bc10
Notes: sideshowbarker 2024-07-17 14:36:19 +09:00
2 changed files with 4 additions and 2 deletions

View file

@ -1,5 +1,6 @@
#import <CSS/LinkStyle.idl>
#import <HTML/HTMLElement.idl>
#import <HTML/Scripting/Fetching.idl>
// https://html.spec.whatwg.org/multipage/semantics.html#htmllinkelement
[Exposed=Window]
@ -22,7 +23,7 @@ interface HTMLLinkElement : HTMLElement {
[FIXME, CEReactions] attribute DOMString referrerPolicy;
[FIXME, SameObject, PutForwards=value] readonly attribute DOMTokenList blocking;
[CEReactions, Reflect] attribute boolean disabled;
[FIXME, CEReactions] attribute DOMString fetchPriority;
[CEReactions, Enumerated=FetchPriorityAttribute, Reflect=fetchpriority] attribute DOMString fetchPriority;
// Obsolete
[CEReactions, Reflect] attribute DOMString charset;