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