SVGLineElement.idl 374 B

12345678910
  1. #import <SVG/SVGAnimatedLength.idl>
  2. #import <SVG/SVGGeometryElement.idl>
  3. [Exposed=Window]
  4. interface SVGLineElement : SVGGeometryElement {
  5. [SameObject] readonly attribute SVGAnimatedLength x1;
  6. [SameObject] readonly attribute SVGAnimatedLength y1;
  7. [SameObject] readonly attribute SVGAnimatedLength x2;
  8. [SameObject] readonly attribute SVGAnimatedLength y2;
  9. };