html5/spec Overview.html,1.1239,1.1240

Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv12343

Modified Files:
	Overview.html 
Log Message:
Make CanvasGradient use the 'octet' type, and other minor fixes. (credit: #developers) (whatwg r2061)

Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.1239
retrieving revision 1.1240
diff -u -d -r1.1239 -r1.1240
--- Overview.html	12 Aug 2008 10:25:45 -0000	1.1239
+++ Overview.html	12 Aug 2008 22:27:53 -0000	1.1240
@@ -8801,7 +8801,7 @@
    <code>Element</code> nodes as well as <code>Document</code> nodes. The
    <code title=dom-outerHTML><a href="#outerhtml">outerHTML</a></code> and
    <code title=dom-insertAdjacentHTML><a
-   href="#insertadjacenthtml">insertAdjacentHTML</a></code> members, on the
+   href="#insertadjacenthtml">insertAdjacentHTML()</a></code> members, on the
    other hand, only apply to <code>Element</code> nodes.
 
   <p class=note>When inserted using the <code title=dom-document-write><a
@@ -21286,8 +21286,8 @@
 
 interface <dfn id=canvaspixelarray>CanvasPixelArray</dfn> {
   readonly attribute unsigned long <a href="#length5" title=dom-canvaspixelarray-length>length</a>;
-  [IndexGetter] <span>float</span> <span title=dom-XXX5>XXX5</span>(in unsigned long index); <!-- XXX DOMB -->
-  [IndexSetter] void <span title=dom-XXX6>XXX6</span>(in unsigned long index, in float value); <!-- XXX DOMB -->
+  [IndexGetter] <span>octet</span> <a href="#xxx5index" title=dom-canvaspixelarray-XXX5>XXX5</a>(in unsigned long index); <!-- XXX DOMB -->
+  [IndexSetter] void <a href="#xxx6index" title=dom-canvaspixelarray-XXX6>XXX6</a>(in unsigned long index, in octet value); <!-- XXX DOMB -->
 };</pre>
 
   <p>The <dfn id=canvas0
@@ -23134,6 +23134,10 @@
    mode. <a href="#references">[ECMA262]</a> <a
    href="#references">[IEEE754R]</a>
 
+  <p class=big-issue>The above is not intended to cause these methods to get
+   any unusual behaviour, it's just supposed to be the normal behaviour for
+   passing values to a method expecting an <code title="">octet</code> type.
+
   <p class=note>The width and height (<var title="">w</var> and <var
    title="">h</var>) might be different from the <var title="">sw</var> and
    <var title="">sh</var> arguments to the above methods, e.g. if the canvas

Received on Tuesday, 12 August 2008 22:28:31 UTC