Files
ladybird/Libraries/LibWeb/SVG/SVGAnimatedInteger.idl
Luke Wilde a89b02e5c3 LibWeb/SVG: Implement SVGAnimatedInteger
This is basically the same as SVGAnimatedNumber, but stores an i32
instead.
2026-02-11 09:39:39 +01:00

7 lines
187 B
Plaintext

// https://svgwg.org/svg2-draft/types.html#InterfaceSVGAnimatedInteger
[Exposed=Window]
interface SVGAnimatedInteger {
attribute long baseVal;
readonly attribute long animVal;
};