From 07adbddbcdc4c6d86b6f0a76cc61732b1a4bf715 Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Wed, 2 Apr 2025 12:05:48 +0100 Subject: [PATCH] LibWeb/SVG: Remove SVGAElement.text attribute Corresponds to https://github.com/w3c/svgwg/commit/7210af660472cdd67f715609c21cb8920ea36594 --- Libraries/LibWeb/SVG/SVGAElement.idl | 2 -- 1 file changed, 2 deletions(-) diff --git a/Libraries/LibWeb/SVG/SVGAElement.idl b/Libraries/LibWeb/SVG/SVGAElement.idl index 6306661f747..f2ddf394821 100644 --- a/Libraries/LibWeb/SVG/SVGAElement.idl +++ b/Libraries/LibWeb/SVG/SVGAElement.idl @@ -14,8 +14,6 @@ interface SVGAElement : SVGGraphicsElement { [Reflect] attribute DOMString hreflang; [Reflect] attribute DOMString type; - [FIXME] attribute DOMString text; - [FIXME] attribute DOMString referrerPolicy; };