mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-08 05:27:14 +09:00
11 lines
494 B
Text
11 lines
494 B
Text
#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;
|
|
};
|