Files
ladybird/Libraries/LibWeb/SVG/SVGAnimatedRect.idl
2024-11-10 12:50:45 +01:00

12 lines
494 B
Plaintext

#import <Geometry/DOMRect.idl>
// https://svgwg.org/svg2-draft/types.html#InterfaceSVGAnimatedRect
[Exposed=Window]
interface SVGAnimatedRect {
// NOTE: The spec says that baseVal and animVal are not nullable, but they are nullable in some other engines.
[SameObject] readonly attribute DOMRect? baseVal;
// NOTE: animVal is a DOMRectReadOnly in the spec, but other engines expose a DOMRect (sometimes aliased as SVGRect).
[SameObject] readonly attribute DOMRect? animVal;
};