Add [NoInterfaceObject] to SVGAnimatedPoints.
--- a/master/shapes.html Sun Aug 05 19:34:16 2012 +1000
+++ b/master/shapes.html Sun Aug 05 19:56:53 2012 +1000
@@ -855,12 +855,14 @@
<p>Additionally, the <span class="attr-name">'points'</span> attribute on
the original element accessed via the XML DOM (e.g., using the
<code>getAttribute()</code> method call) will reflect any changes made to
-<a>points</a>.
-</p>
-<pre class="idl">interface <b>SVGAnimatedPoints</b> {
+<a>points</a>.</p>
+
+<pre class="idl">[NoInterfaceObject]
+interface <b>SVGAnimatedPoints</b> {
readonly attribute <a class="idlinterface" href="coords.html#InterfaceSVGPointList">SVGPointList</a> <a href="shapes.html#__svg__SVGAnimatedPoints__points">points</a>;
readonly attribute <a class="idlinterface" href="coords.html#InterfaceSVGPointList">SVGPointList</a> <a href="shapes.html#__svg__SVGAnimatedPoints__animatedPoints">animatedPoints</a>;
-};</pre><dl class="interface">
+};</pre>
+<dl class="interface">
<dt class="attributes-header">Attributes:</dt>
<dd>
<dl class="attributes">
@@ -892,14 +894,14 @@
<h3 id="InterfaceSVGPolylineElement">Interface SVGPolylineElement</h3>
-
<edit:with element='polyline'>
-The <a>SVGPolylineElement</a> interface corresponds to the <a>'polyline'</a>
-element.
-<pre class="idl">interface <b>SVGPolylineElement</b> : <a>SVGGraphicsElement</a>,
- <a class="idlinterface" href="shapes.html#InterfaceSVGAnimatedPoints">SVGAnimatedPoints</a> {
-};</pre>
+<p>The <a>SVGPolylineElement</a> interface corresponds to the <a>'polyline'</a> element.</p>
+
+<pre class="idl">interface <b>SVGPolylineElement</b> : <a>SVGGraphicsElement</a> {
+};
+
+<a>SVGPolylineElement</a> implements <a>SVGAnimatedPoints</a>;</pre>
</edit:with>
@@ -908,11 +910,12 @@
<edit:with element='polygon'>
-The <a>SVGPolygonElement</a> interface corresponds to the <a>'polygon'</a>
-element.
-<pre class="idl">interface <b>SVGPolygonElement</b> : <a>SVGGraphicsElement</a>,
- <a class="idlinterface" href="shapes.html#InterfaceSVGAnimatedPoints">SVGAnimatedPoints</a> {
-};</pre>
+<p>The <a>SVGPolygonElement</a> interface corresponds to the <a>'polygon'</a> element.</p>
+
+<pre class="idl">interface <b>SVGPolygonElement</b> : <a>SVGGraphicsElement</a> {
+};
+
+<a>SVGPolygonElement</a> implements <a>SVGAnimatedPoints</a>;</pre>
</edit:with>