- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 29 Apr 2009 08:02:47 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv2810 Modified Files: Overview.html Log Message: Define the task sources used for WebStorage; define that 'storage' events are queued not synchronous. (Also: Add some v4 notes for <canvas>.) (whatwg r3025) Index: Overview.html =================================================================== 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:02:57 UTC