- From: Tantek Celik via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 18 Feb 2011 18:45:38 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-ui In directory hutz:/tmp/cvs-serv22763 Modified Files: Overview.html Overview.src.html Log Message: add 'cursor' values 'zoom-in' and 'zoom-out'. we have 2 implementations: FF1.0+, Opera11.10+ (with prefixes). Index: Overview.html =================================================================== RCS file: /sources/public/csswg/css3-ui/Overview.html,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- Overview.html 8 Feb 2011 02:06:59 -0000 1.19 +++ Overview.html 18 Feb 2011 18:45:35 -0000 1.20 @@ -55,12 +55,12 @@ src="http://www.w3.org/Icons/w3c_home" width=72> </a> <h1>CSS Basic User Interface Module Level 3</h1> - <h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 8 February + <h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 18 February 2011</h2> <dl> <dt>This version:</dt> - <!-- <dd><a href="http://www.w3.org/TR/2011/ED-css3-ui-20110208">http://www.w3.org/TR/2011/ED-css3-ui-20110208</a></dd> --> + <!-- <dd><a href="http://www.w3.org/TR/2011/ED-css3-ui-20110218">http://www.w3.org/TR/2011/ED-css3-ui-20110218</a></dd> --> <dd><a href="http://dev.w3.org/csswg/css3-ui/">http://dev.w3.org/csswg/css3-ui/</a> @@ -3104,7 +3104,8 @@ alias | copy | move | no-drop | not-allowed | <br> e-resize | n-resize | ne-resize | nw-resize | s-resize | se-resize | sw-resize | w-resize | ew-resize | ns-resize | nesw-resize | - nwse-resize | col-resize | row-resize | all-scroll <br> + nwse-resize | col-resize | row-resize | all-scroll | zoom-in | zoom-out + <br> ] ] | inherit <tr> @@ -3322,6 +3323,17 @@ middle. </dl> + <h5 class="no-num no-toc" id=zooming-cursors>zooming cursors</h5> + + <dl> + <dt><strong> <span style="cursor:-moz-zoom-in; cursor:-o-zoom-in; + cursor:zoom-in"> zoom-in</span>, <span style="cursor:-moz-zoom-out; + cursor:-o-zoom-out; cursor:zoom-out"> zoom-out</span> </strong> + + <dd>Indicates that something can be zoomed (magnified) in or out + respectively. + </dl> + <p>The UA may treat unsupported values as ‘<code class=css><span class=value>auto</span></code>’. E.g. on platforms that do not have a concept of a ‘<code class=css><span @@ -3828,10 +3840,10 @@ <dt id=CSS21>[CSS21] <dd>Bert Bos; et al. <a - href="http://www.w3.org/TR/2009/CR-CSS2-20090908"><cite>Cascading Style - Sheets Level 2 Revision 1 (CSS 2.1) Specification.</cite></a> 8 September - 2009. W3C Candidate Recommendation. (Work in progress.) URL: <a - href="http://www.w3.org/TR/2009/CR-CSS2-20090908">http://www.w3.org/TR/2009/CR-CSS2-20090908</a> + href="http://www.w3.org/TR/2010/WD-CSS2-20101207"><cite>Cascading Style + Sheets Level 2 Revision 1 (CSS 2.1) Specification.</cite></a> 7 December + 2010. W3C Working Draft. (Work in progress.) URL: <a + href="http://www.w3.org/TR/2010/WD-CSS2-20101207">http://www.w3.org/TR/2010/WD-CSS2-20101207</a> </dd> <!----> @@ -4727,7 +4739,8 @@ text | vertical-text | alias | copy | move | no-drop | not-allowed | e-resize | n-resize | ne-resize | nw-resize | s-resize | se-resize | sw-resize | w-resize | ew-resize | ns-resize | nesw-resize | - nwse-resize | col-resize | row-resize | all-scroll ] ] | inherit + nwse-resize | col-resize | row-resize | all-scroll | zoom-in | zoom-out + ] ] | inherit <td>auto Index: Overview.src.html =================================================================== RCS file: /sources/public/csswg/css3-ui/Overview.src.html,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- Overview.src.html 8 Feb 2011 02:06:59 -0000 1.19 +++ Overview.src.html 18 Feb 2011 18:45:35 -0000 1.20 @@ -1714,7 +1714,9 @@ e-resize | n-resize | ne-resize | nw-resize | s-resize | se-resize | sw-resize | w-resize | ew-resize | ns-resize | nesw-resize | nwse-resize | col-resize | row-resize | - all-scroll <br> + all-scroll +| zoom-in | zoom-out +<br> ] ] | inherit </td></tr> <tr><th>Initial:</th><td>auto</td></tr> <tr><th>Applies to:</th><td>all elements</td></tr> @@ -1852,6 +1854,17 @@ Often rendered as arrows pointing up, down, left, and right with a dot in the middle. </dd> </dl> + +<h5 class="no-num no-toc">zooming cursors</h5> +<dl> +<dt><strong> +<span style="cursor:-moz-zoom-in; cursor:-o-zoom-in; cursor:zoom-in"> zoom-in</span>, +<span style="cursor:-moz-zoom-out; cursor:-o-zoom-out; cursor:zoom-out"> zoom-out</span> +</strong> +</dt> +<dd>Indicates that something can be zoomed (magnified) in or out respectively. </dd> +</dl> + <p>The UA may treat unsupported values as '<span class="value">auto</span>'. E.g. on platforms that do not have a concept of a '<span class="value">context-menu</span>' cursor, the UA may render '<span class="value">default</span>' or whatever is appropriate. </p>
Received on Friday, 18 February 2011 18:45:42 UTC