- From: Tab Atkins Jr.. via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 21 Nov 2011 22:34:55 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-lists
In directory hutz:/tmp/cvs-serv30236
Modified Files:
Overview.html Overview.src.html
Log Message:
Added Hakon's issue about providing a single combined string to 'glyphs'.
Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-lists/Overview.html,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -d -r1.105 -r1.106
--- Overview.html 19 Nov 2011 00:06:01 -0000 1.105
+++ Overview.html 21 Nov 2011 22:34:51 -0000 1.106
@@ -25,13 +25,13 @@
<h1>CSS Lists and Counters Module Level 3</h1>
- <h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 19 November
+ <h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 21 November
2011</h2>
<dl>
<dt>This version:
- <dd><!--<a href="http://www.w3.org/TR/2011/WD-css3-lists-20111119">http://www.w3.org/TR/2011/WD-css3-lists-20111119</a></dd>-->
+ <dd><!--<a href="http://www.w3.org/TR/2011/WD-css3-lists-20111121">http://www.w3.org/TR/2011/WD-css3-lists-20111121</a></dd>-->
<a
href="http://dev.w3.org/csswg/css3-lists/">http://dev.w3.org/csswg/css3-lists/</a>
@@ -2300,7 +2300,22 @@
concatenating counter glyphs together. Image counter glyphs are rendered
as inline replaced elements. The <a
href="http://dev.w3.org/csswg/css3-images/#default-object-size">default
- object size</a> of an image counter glyph is a 1em by 1em square.</p>
+ object size</a> of an image counter glyph is a 1em by 1em square.
+
+ <div class=issue>
+ <p>It's been requested that there be a way to express lists with lots of
+ single-character glyphs in a more compact way, something like e.g.:</p>
+
+ <pre>
+@counter-style decimal {
+ type: numeric;
+ glyphs: combined "0123456789";
+}</pre>
+
+ <p>This does reduce the verbosity of a lot of styles, but I'm somewhat
+ concerned about being forced to deal with "graphemes" instead of
+ "characters". Is this reasonable?</p>
+ </div>
<!-- ====================================================================== -->
<h2 id=symbols-function><span class=secno>9. </span> Defining Anonymous
Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-lists/Overview.src.html,v
retrieving revision 1.152
retrieving revision 1.153
diff -u -d -r1.152 -r1.153
--- Overview.src.html 19 Nov 2011 00:06:01 -0000 1.152
+++ Overview.src.html 21 Nov 2011 22:34:52 -0000 1.153
@@ -1548,6 +1548,19 @@
<a href="http://dev.w3.org/csswg/css3-images/#default-object-size">default object size</a>
of an image counter glyph is a 1em by 1em square.</p>
+ <div class='issue'>
+ <p>It's been requested that there be a way to express lists with lots of single-character glyphs in a more compact way, something like e.g.:</p>
+
+ <pre>
+@counter-style decimal {
+ type: numeric;
+ glyphs: combined "0123456789";
+}</pre>
+
+ <p>This does reduce the verbosity of a lot of styles, but I'm somewhat concerned about being forced to deal with "graphemes" instead of "characters". Is this reasonable?</p>
+ </div>
+
+
<!-- ====================================================================== -->
<h2 id='symbols-function'>
Received on Monday, 21 November 2011 22:35:04 UTC