Skip to content

Commit a518b7b

Browse files
committed
Added Hakon's issue about providing a single combined string to 'glyphs'.
1 parent 0c3c23b commit a518b7b

2 files changed

Lines changed: 31 additions & 3 deletions

File tree

css3-lists/Overview.html

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@
2525

2626
<h1>CSS Lists and Counters Module Level 3</h1>
2727

28-
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 19 November
28+
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 21 November
2929
2011</h2>
3030

3131
<dl>
3232
<dt>This version:
3333

34-
<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>-->
34+
<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>-->
3535
<a
3636
href="http://dev.w3.org/csswg/css3-lists/">http://dev.w3.org/csswg/css3-lists/</a>
3737

@@ -2300,7 +2300,22 @@ <h3 id=counter-style-glyphs><span class=secno>8.7. </span> Marker
23002300
concatenating counter glyphs together. Image counter glyphs are rendered
23012301
as inline replaced elements. The <a
23022302
href="http://dev.w3.org/csswg/css3-images/#default-object-size">default
2303-
object size</a> of an image counter glyph is a 1em by 1em square.</p>
2303+
object size</a> of an image counter glyph is a 1em by 1em square.
2304+
2305+
<div class=issue>
2306+
<p>It's been requested that there be a way to express lists with lots of
2307+
single-character glyphs in a more compact way, something like e.g.:</p>
2308+
2309+
<pre>
2310+
@counter-style decimal {
2311+
type: numeric;
2312+
glyphs: combined "0123456789";
2313+
}</pre>
2314+
2315+
<p>This does reduce the verbosity of a lot of styles, but I'm somewhat
2316+
concerned about being forced to deal with "graphemes" instead of
2317+
"characters". Is this reasonable?</p>
2318+
</div>
23042319
<!-- ====================================================================== -->
23052320

23062321
<h2 id=symbols-function><span class=secno>9. </span> Defining Anonymous

css3-lists/Overview.src.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1548,6 +1548,19 @@ <h3 id='counter-style-glyphs'>
15481548
<a href="http://dev.w3.org/csswg/css3-images/#default-object-size">default object size</a>
15491549
of an image counter glyph is a 1em by 1em square.</p>
15501550

1551+
<div class='issue'>
1552+
<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>
1553+
1554+
<pre>
1555+
@counter-style decimal {
1556+
type: numeric;
1557+
glyphs: combined "0123456789";
1558+
}</pre>
1559+
1560+
<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>
1561+
</div>
1562+
1563+
15511564
<!-- ====================================================================== -->
15521565

15531566
<h2 id='symbols-function'>

0 commit comments

Comments
 (0)