From e1317915f476193ad1211e31d2b1d2ece06cd82f Mon Sep 17 00:00:00 2001 From: Jamie Mansfield Date: Sat, 20 Jul 2024 18:41:48 +0100 Subject: [PATCH] LibWeb/SVG: Stub missing SVGLength attributes setraises is no longer used by the spec, so I've removed that FIXME :^) --- Userland/Libraries/LibWeb/SVG/SVGLength.idl | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/Userland/Libraries/LibWeb/SVG/SVGLength.idl b/Userland/Libraries/LibWeb/SVG/SVGLength.idl index 5924619ec65..e8546fb545b 100644 --- a/Userland/Libraries/LibWeb/SVG/SVGLength.idl +++ b/Userland/Libraries/LibWeb/SVG/SVGLength.idl @@ -15,12 +15,10 @@ interface SVGLength { readonly attribute unsigned short unitType; - // FIXME: Support setraises(). - attribute float value; // setraises(DOMException); + attribute float value; + [FIXME] attribute float valueInSpecifiedUnits; + [FIXME] attribute DOMString valueAsString; - // attribute float valueInSpecifiedUnits setraises(DOMException); - // attribute DOMString valueAsString setraises(DOMException); - - // void newValueSpecifiedUnits(in unsigned short unitType, in float valueInSpecifiedUnits) raises(DOMException); - // void convertToSpecifiedUnits(in unsigned short unitType) raises(DOMException); + [FIXME] undefined newValueSpecifiedUnits(unsigned short unitType, float valueInSpecifiedUnits); + [FIXME] undefined convertToSpecifiedUnits(unsigned short unitType); };