Skip to content

Commit fbc3520

Browse files
committed
Add colgroups to table
1 parent 56a4fa1 commit fbc3520

2 files changed

Lines changed: 40 additions & 5 deletions

File tree

css3-writing-modes/Overview.html

Lines changed: 34 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@
3232

3333
<h1>CSS Writing Modes Module Level 3</h1>
3434

35-
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 26 July 2011</h2>
35+
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 29 July 2011</h2>
3636

3737
<dl>
3838
<dt>This version:
3939

4040
<dd><a
4141
href="http://dev.w3.org/csswg/css3-writing-modes/">http://dev.w3.org/csswg/css3-writing-modes/</a>
4242
<!--
43-
<dd><a href="http://www.w3.org/TR/2011/WD-css3-writing-modes-20110726">http://www.w3.org/TR/2011/ED-css3-writing-modes-20110726/</a>
43+
<dd><a href="http://www.w3.org/TR/2011/WD-css3-writing-modes-20110729">http://www.w3.org/TR/2011/ED-css3-writing-modes-20110729/</a>
4444
-->
4545

4646

@@ -2039,6 +2039,18 @@ <h3 id=logical-to-physical><span class=secno>6.5. </span>
20392039
<p>The following table summarizes the abstract-to-physical mappings:
20402040

20412041
<table class=data>
2042+
<colgroup class=header></colgroup>
2043+
2044+
<colgroup span=2></colgroup>
2045+
2046+
<colgroup span=2></colgroup>
2047+
2048+
<colgroup span=2></colgroup>
2049+
2050+
<colgroup span=2></colgroup>
2051+
2052+
<colgroup span=2></colgroup>
2053+
20422054
<caption>Abstract-Physical Mapping</caption>
20432055

20442056
<thead>
@@ -3294,16 +3306,20 @@ <h2 class=no-num id=vertical-typesetting-details>Appendix C: Vertical
32943306
following settings are recommended:
32953307

32963308
<ol>
3297-
<li>Set any spaces (Zs), dashes (Pd), connectors (Pc), and bracketing
3298-
punctuation (Ps, Pe, Pi, Pf) either upright using vertical font settings
3299-
if available or sideways if they are not.
3309+
<li>Set any spaces (Zs), connectors (Pc), and bracketing punctuation (Ps,
3310+
Pe, Pi, Pf) either upright using vertical font settings if available or
3311+
sideways if they are not.
33003312
<p class=note>Thus a THREE-PER-EM SPACE (U+2004) can be expected to
33013313
provide a 1/3-em advance in the inline dimension, and brackets can be
33023314
expected to encase their contents.</p>
33033315

33043316
<li>Set East Asian fullwidth (F) and wide (W) characters upright (using
33053317
vertical font settings if available).
33063318

3319+
<li>Set any dashes (Pd) either upright using vertical font settings if
3320+
available or sideways if they are not.
3321+
<!-- fullwidth hyphen-minus need to be upright -->
3322+
33073323
<li>Set East Asian halfwidth (H) characters sideways (or upright with
33083324
vertical font settings if possible).
33093325

@@ -3574,6 +3590,19 @@ <h4 id="multicol-intrinsic-measures">
35743590
CSS2.1 block-level boxes, the extent that would be calculated for an
35753591
''auto'' extent per [[CSS3MULTICOL]].
35763592
3593+
NOTES FROM ROSSEN:
3594+
min-content measure is min(column-width, min-content)
3595+
max-content measure is
3596+
1. Pass w/ colspans displ: none;
3597+
Get width
3598+
2. Pass with colspans only in width
3599+
Get remaining height
3600+
3. Pass w/ spans again using remaining height
3601+
Get width
3602+
4. Layout in width as final
3603+
Will lay out perfectly without colspans; will have some slack but no
3604+
overflow when colspans present.
3605+
35773606
<h4 id="multicol-intrinsic-columns">
35783607
Intrinsic Sizes for Columns</h4>
35793608
-->

css3-writing-modes/Overview.src.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1490,6 +1490,12 @@ <h3 id="logical-to-physical">
14901490
<p>The following table summarizes the abstract-to-physical mappings:</p>
14911491

14921492
<table class="data">
1493+
<colgroup class="header"></colgroup>
1494+
<colgroup span=2></colgroup>
1495+
<colgroup span=2></colgroup>
1496+
<colgroup span=2></colgroup>
1497+
<colgroup span=2></colgroup>
1498+
<colgroup span=2></colgroup>
14931499
<caption>Abstract-Physical Mapping</caption>
14941500
<thead>
14951501
<tr>

0 commit comments

Comments
 (0)