LibWeb/SVG: Stub missing SVGLength attributes

setraises is no longer used by the spec, so I've removed that FIXME :^)
This commit is contained in:
Jamie Mansfield 2024-07-20 18:41:48 +01:00 committed by Andreas Kling
parent 6c7089fc9e
commit e1317915f4
Notes: github-actions[bot] 2024-07-21 11:26:39 +00:00

View file

@ -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);
};