LibWeb: Implement HTMLAreaElement.referrerPolicy

This commit is contained in:
Jamie Mansfield 2024-05-31 21:35:51 +01:00 committed by Andreas Kling
commit 8f2cb6755b
Notes: sideshowbarker 2024-07-17 05:02:42 +09:00
7 changed files with 18 additions and 3 deletions

View file

@ -1,3 +1,4 @@
#import <Fetch/Request.idl>
#import <HTML/HTMLElement.idl>
#import <HTML/HTMLHyperlinkElementUtils.idl>
@ -15,7 +16,7 @@ interface HTMLAreaElement : HTMLElement {
[CEReactions, Reflect] attribute USVString ping;
[CEReactions, Reflect] attribute DOMString rel;
[SameObject, PutForwards=value] readonly attribute DOMTokenList relList;
[FIXME, CEReactions] attribute DOMString referrerPolicy;
[CEReactions, Reflect=referrerpolicy, Enumerated=ReferrerPolicy] attribute DOMString referrerPolicy;
// Obsolete
[Reflect=nohref] attribute boolean noHref;