mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-29 20:30:58 +00:00
12 lines
494 B
Text
12 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;
|
||
|
|
};
|