Definition
Scalable Vector Graphics (SVG) 2 defines SVGPolylineElement
[Exposed=Window]
interface SVGPolylineElement : SVGGeometryElement {
};
SVGPolylineElement includes SVGAnimatedPoints;
Consolidated IDL (across mixin and partials)
[Exposed=Window]
interface SVGPolylineElement : SVGGeometryElement {
[SameObject] readonly attribute SVGPointList points;
[SameObject] readonly attribute SVGPointList animatedPoints;
};