Add [NoInterfaceObject] to SVGAnimatedPoints.
authorCameron McCormack <cam@mcc.id.au>
Sun, 05 Aug 2012 19:56:53 +1000
changeset 252 11296938e6c0
parent 251 6ffe8c78ba53
child 253 bca5952231aa
Add [NoInterfaceObject] to SVGAnimatedPoints.
master/shapes.html
--- 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>