LibWeb/SVG: Implement the SVGAElement.referrerPolicy attribute

This commit is contained in:
Tim Ledbetter 2025-07-12 02:12:07 +01:00 committed by Jelle Raaijmakers
commit 31e8189f9f
Notes: github-actions[bot] 2025-07-12 09:06:49 +00:00
4 changed files with 19 additions and 6 deletions

View file

@ -1,4 +1,5 @@
#import <DOM/DOMTokenList.idl>
#import <Fetch/Request.idl>
#import <HTML/HTMLHyperlinkElementUtils.idl>
#import <SVG/SVGURIReference.idl>
@ -14,7 +15,7 @@ interface SVGAElement : SVGGraphicsElement {
[Reflect] attribute DOMString hreflang;
[Reflect] attribute DOMString type;
[FIXME] attribute DOMString referrerPolicy;
[Reflect=referrerpolicy, Enumerated=ReferrerPolicy] attribute DOMString referrerPolicy;
};