- From: poot <cvsmail@w3.org>
- Date: Wed, 13 Aug 2008 07:30:54 +0900 (JST)
- To: public-html-diffs@w3.org
Make CanvasGradient use the 'octet' type, and other minor fixes. (credit: #developers) (whatwg r2061) CanvasPixelArray http://people.w3.org/mike/diffs/html5/spec/Overview.1.1240.html#canvaspixelarray document.writeln(...) http://people.w3.org/mike/diffs/html5/spec/Overview.1.1240.html#document.writeln... XXX6(index, value) http://people.w3.org/mike/diffs/html5/spec/Overview.1.1240.html#xxx6index canvas http://people.w3.org/mike/diffs/html5/spec/Overview.1.1240.html#canvas0 ImageData http://people.w3.org/mike/diffs/html5/spec/Overview.1.1240.html#imagedata http://people.w3.org/mike/diffs/html5/spec/Overview.diff.html http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.1239&r2=1.1240&f=h http://html5.org/tools/web-apps-tracker?from=2060&to=2061 =================================================================== 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:31:31 UTC