- From: poot <cvsmail@w3.org>
- Date: Wed, 29 Apr 2009 17:04:17 +0900 (JST)
- To: public-html-diffs@w3.org
Define the task sources used for WebStorage; define that 'storage' events are queued not synchronous. (Also: Add some v4 notes for <canvas>.) (whatwg r3025) fillStyle http://people.w3.org/mike/diffs/html5/spec/Overview.1.2186.html#dom-context-2d-fillstyle strokeStyle http://people.w3.org/mike/diffs/html5/spec/Overview.1.2186.html#dom-context-2d-strokestyle rect(x, y, w, h) http://people.w3.org/mike/diffs/html5/spec/Overview.1.2186.html#dom-context-2d-rect fill() http://people.w3.org/mike/diffs/html5/spec/Overview.1.2186.html#dom-context-2d-fill 4.8.11.1.4 Colors and styles http://people.w3.org/mike/diffs/html5/spec/Overview.1.2186.html#colors-and-styles http://people.w3.org/mike/diffs/html5/spec/Overview.diff.html http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.2185&r2=1.2186&f=h http://html5.org/tools/web-apps-tracker?from=3024&to=3025 =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.2185 retrieving revision 1.2186 diff -u -d -r1.2185 -r1.2186 --- Overview.html 29 Apr 2009 06:21:04 -0000 1.2185 +++ Overview.html 29 Apr 2009 08:02:44 -0000 1.2186 @@ -20122,6 +20122,24 @@ </dl><div class="impl"> + <!-- v4 feature requests: + + * Getting and setting colours by component to bypass the CSS value parsing. + + Either: + context.fillStyle.red += 1; + + Or: + var array = context.fillStyle; + array[1] += 1; + context.fillStyle = array; + + * fill rule for deciding between winding and even-odd algorithms. + SVG has fill-rule: nonzero | evenodd + http://www.w3.org/TR/SVG/painting.html#FillProperties + + --> + <p>The <dfn id="dom-context-2d-strokestyle" title="dom-context-2d-strokeStyle"><code>strokeStyle</code></dfn> attribute represents the color or style to use for the lines around shapes, and the <dfn id="dom-context-2d-fillstyle" title="dom-context-2d-fillStyle"><code>fillStyle</code></dfn> @@ -21035,6 +21053,12 @@ a new subpath with the point (<var title="">x</var>, <var title="">y</var>) as the only point in the subpath.</p> + <!-- v4 feature request: + * points as a primitive shape + http://home.comcast.net/~urbanjost/canvas/vogle4.html + --> + + <p>The <dfn id="dom-context-2d-fill" title="dom-context-2d-fill"><code>fill()</code></dfn> method must fill all the subpaths of the current path, using <code title="dom-context-2d-fillStyle"><a href="#dom-context-2d-fillstyle">fillStyle</a></code>, and using
Received on Wednesday, 29 April 2009 08:04:54 UTC