Skip to content

Commit 1724609

Browse files
committed
[css-writing-modes] DoC Issue 54. Computation of sideways/sideways-right
1 parent 26b2d6a commit 1724609

3 files changed

Lines changed: 19 additions & 19 deletions

File tree

css-writing-modes/Overview.bs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -888,7 +888,7 @@ Block Flow Direction: the 'writing-mode' property</h3>
888888

889889
<div class="note" id="embedded-svg-inheritance">
890890
<p>As all other inherited CSS properties do,
891-
the 'writing-mode' property inherits to SVG elements inlined
891+
the 'writing-mode' property inherits to SVG elements inlined
892892
(rather than linked) into the source document.
893893
This could cause unintentional side effects when, for example,
894894
an SVG image designed only for horizontal flow was embedded into a vertical flow document.
@@ -967,7 +967,7 @@ Supporting SVG1.1 'writing-mode' values in presentational attributes</h5>
967967
Authors who wish to create forwards and backwards-compatible SVG content
968968
in CSS syntax can use the CSS forwards-compatible parsing rules to do so,
969969
e.g.
970-
970+
971971
<pre>svg|text { writing-mode: tb; writing-mode: vertical-rl; }</pre>
972972
</div>
973973

@@ -1207,7 +1207,7 @@ Orienting Text: the 'text-orientation' property</h3>
12071207

12081208
<pre class='propdef'>
12091209
Name: text-orientation
1210-
Value: mixed | upright | sideways-right | sideways
1210+
Value: mixed | upright | sideways
12111211
Initial: mixed
12121212
Applies to: all elements except table row groups, rows, column groups, and columns
12131213
Inherited: yes
@@ -1248,11 +1248,9 @@ Orienting Text: the 'text-orientation' property</h3>
12481248
<p>For the purposes of bidi reordering, this value causes all
12491249
characters to be treated as strong LTR.
12501250
This value causes the used value of 'direction' to be ''ltr''.
1251-
<dt><dfn>sideways-right</dfn></dt>
1251+
<dt><dfn>sideways</dfn></dt>
12521252
<dd><p>In vertical writing modes, this causes text to be set as if
12531253
in a horizontal layout, but rotated 90&deg; clockwise.
1254-
<dt><dfn>sideways</dfn></dt>
1255-
<dd><p>This value is equivalent to ''sideways-right''.
12561254
</dl>
12571255

12581256
<div class="figure" id="fig-text-orientation">
@@ -1270,19 +1268,22 @@ Orienting Text: the 'text-orientation' property</h3>
12701268
</td>
12711269
<td>
12721270
<img
1273-
alt="text-orientation: sideways-right"
1271+
alt="text-orientation: sideways"
12741272
src="images/text-orientation-sr.png" width="64" height="160" >
12751273
</td>
12761274
</tr>
12771275
<tr>
12781276
<td>''mixed''</td>
12791277
<td>''upright''</td>
1280-
<td>''sideways-right''</td>
1278+
<td>''sideways''</td>
12811279
</tr>
12821280
</table>
12831281
<p class="caption">'text-orientation' values ('writing-mode' is ''vertical-rl'')</p>
12841282
</div>
12851283

1284+
UA may accept <dfn>sideways-right</dfn> as the value that computes to ''sideways''
1285+
if needed for backward compatibility reasons.
1286+
12861287
<p class="note">Changing the value of this property may affect inline-level alignment.
12871288
Refer to <a href="#text-baselines">Text Baselines</a> for more details.</p>
12881289

@@ -1343,7 +1344,7 @@ Vertical Typesetting and Font Features</h4>
13431344
</dl>
13441345

13451346
<p>
1346-
All text in ''sideways'' and ''sideways-right'' orientations is
1347+
All text in ''sideways'' orientations is
13471348
typeset using horizontal font metrics and the normal set of features
13481349
used for horizontal text runs.
13491350
Vertical metrics, vertical glyph variations, and any other features meant
@@ -1678,7 +1679,7 @@ Line-relative Directions</h3>
16781679
or the vertical baseline is synthesized if the font does not provide.
16791680
<p>
16801681
Since the baseline is vertical,
1681-
the definitions for ''mixed'' or ''sideways-right'' above still applies; i.e.,
1682+
the definitions for ''mixed'' or ''sideways'' above still applies; i.e.,
16821683
<a>line-over</a> is on right, and <a>line-under</a> is on left.
16831684
</div>
16841685

@@ -2660,7 +2661,7 @@ Full-width Characters</h5>
26602661

26612662
<ul>
26622663
<li>Fixed orthogonal flows auto-sizing rules to better handle shrink-wrapping.
2663-
<li>Removed ''sideways-left'' value of 'text-orientation' and added ''sideways-lr'' and ''sideways-rl'' values to 'writing-mode'.
2664+
<li>Removed ''sideways-left'' and ''sideways-right'' value of 'text-orientation' and added ''sideways-lr'' and ''sideways-rl'' values to 'writing-mode'.
26642665
<li>Removed ''use-glyph-orientation'' value of 'text-orientation' and defined 'glyph-orientation-vertical' as an alias of 'text-orientation'
26652666
consistent with how CSS aliases are handled (see 'page-break-inside' for an example).
26662667
<li>
@@ -2792,4 +2793,3 @@ Vertical Scripts in Unicode</h2>
27922793
Due to limitations in the current featureset of Unicode Technical Report 50 and CSS Writing Modes,
27932794
vertical ''mixed'' typesetting cannot automatically handle either Ogham or Old Turkic.
27942795
For these scripts, ''sideways-lr'' can be used to typeset passages.
2795-

css-writing-modes/issues-cr-2014.bs-issues

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -420,12 +420,12 @@ Resolved: https://lists.w3.org/Archives/Public/www-style/2015Sep/0113.html
420420
Issue 53.
421421
Summary: Computation of writing-mode aliases
422422
Comment: https://lists.w3.org/Archives/Public/www-style/2015Sep/0175.html
423-
Response:
423+
Response:
424424
Open
425425
----
426426
Issue 54.
427427
Summary: Computation of sideways/sideways-right
428428
Comment: https://lists.w3.org/Archives/Public/www-style/2015Sep/0163.html
429-
Response:
430-
Open
429+
Response:
430+
Closed: Accepted
431431
----

css-writing-modes/issues-cr-2014.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -445,14 +445,14 @@ <h1>CSS Writing Modes Level 3 Disposition of Comments for 2014-03-20 CR</h1>
445445
<span>Issue 53. <a href='#issue-53'>#</a></span>
446446
<span>Summary: Computation of writing-mode aliases</span>
447447
<span>Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Sep/0175.html'>https://lists.w3.org/Archives/Public/www-style/2015Sep/0175.html</a></span>
448-
<span>Response: </span>
448+
<span>Response:</span>
449449
<span>Open</span></pre>
450-
<pre class='open r' id='issue-54'>
450+
<pre class='open a' id='issue-54'>
451451
<span>Issue 54. <a href='#issue-54'>#</a></span>
452452
<span>Summary: Computation of sideways/sideways-right</span>
453453
<span>Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Sep/0163.html'>https://lists.w3.org/Archives/Public/www-style/2015Sep/0163.html</a></span>
454-
<span>Response: </span>
455-
<span>Open</span></pre>
454+
<span>Response:</span>
455+
<span class="a">Closed: Accepted</span></pre>
456456
<script>
457457
(function () {
458458
var sheet = document.styleSheets[0];

0 commit comments

Comments
 (0)