SVGAnimatedRect.idl 494 B

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