Skip to content

Commit a55e4bc

Browse files
committed
Fix problems with text-decoration-skip
1 parent f9c9148 commit a55e4bc

2 files changed

Lines changed: 17 additions & 17 deletions

File tree

css3-text/Overview.html

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4054,12 +4054,12 @@ <h4 id=text-decoration-skip><span class=secno>11.1.5. </span> Text
40544054
<tr>
40554055
<th>Value:
40564056

4057-
<td>none | [ images || spaces || ink || all ]
4057+
<td>none | [ objects || spaces || ink || all ]
40584058

40594059
<tr>
40604060
<th>Initial:
40614061

4062-
<td>images
4062+
<td>objects
40634063

40644064
<tr>
40654065
<th>Applies to:
@@ -4098,9 +4098,10 @@ <h4 id=text-decoration-skip><span class=secno>11.1.5. </span> Text
40984098
<dd>Skip nothing: text-decoration is drawn for all text content and for
40994099
inline replaced elements.
41004100

4101-
<dt><dfn id=images title="text-decoration-skip:images">images</dfn>
4101+
<dt><dfn id=objects title="text-decoration-skip:objects">objects</dfn>
41024102

4103-
<dd>Skip this element if it is an inline replaced element.
4103+
<dd>Skip this element if it is an atomic inline (such as an image or
4104+
inline-block).
41044105

41054106
<dt><dfn id=spaces title="text-decoration-skip:spaces">spaces</dfn>
41064107

@@ -4118,8 +4119,7 @@ <h4 id=text-decoration-skip><span class=secno>11.1.5. </span> Text
41184119

41194120
<dt><dfn id=all title="text-decoration-skip:all">all</dfn>
41204121

4121-
<dd>Skip over all content in this element. This value does <em>not</em>
4122-
affect text decorations drawn by this element.
4122+
<dd>Skip over all content in this element.
41234123
</dl>
41244124

41254125
<p class=issue>Do we need a value that <em>doesn't</em> skip margins and
@@ -5361,9 +5361,9 @@ <h2 class=no-num id=appendix-b-property-index> Appendix B: Property index</h2>
53615361
<td><a class=property
53625362
href="#text-decoration-skip0">text-decoration-skip</a>
53635363

5364-
<td>none | [ images || spaces || ink || all ]
5364+
<td>none | [ objects || spaces || ink || all ]
53655365

5366-
<td>images
5366+
<td>objects
53675367

53685368
<td>all elements
53695369

@@ -5896,15 +5896,15 @@ <h2 class=no-num id=index>Index</h2>
58965896
<li>text-decoration-skip:all, <a href="#all"
58975897
title="text-decoration-skip:all"><strong>11.1.5.</strong></a>
58985898

5899-
<li>text-decoration-skip:images, <a href="#images"
5900-
title="text-decoration-skip:images"><strong>11.1.5.</strong></a>
5901-
59025899
<li>text-decoration-skip:ink, <a href="#ink"
59035900
title="text-decoration-skip:ink"><strong>11.1.5.</strong></a>
59045901

59055902
<li>text-decoration-skip:none, <a href="#none4"
59065903
title="text-decoration-skip:none"><strong>11.1.5.</strong></a>
59075904

5905+
<li>text-decoration-skip:objects, <a href="#objects"
5906+
title="text-decoration-skip:objects"><strong>11.1.5.</strong></a>
5907+
59085908
<li>text-decoration-skip:spaces, <a href="#spaces"
59095909
title="text-decoration-skip:spaces"><strong>11.1.5.</strong></a>
59105910

css3-text/Overview.src.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3045,12 +3045,12 @@ <h4 id="text-decoration-skip">
30453045
</tr>
30463046
<tr>
30473047
<th>Value:</th>
3048-
<td>none | [ images || spaces || ink || all ]
3048+
<td>none | [ objects || spaces || ink || all ]
30493049
</td>
30503050
</tr>
30513051
<tr>
30523052
<th>Initial:</th>
3053-
<td>images</td>
3053+
<td>objects</td>
30543054
</tr>
30553055
<tr>
30563056
<th>Applies to:</th>
@@ -3085,8 +3085,9 @@ <h4 id="text-decoration-skip">
30853085
<dt><dfn title="text-decoration-skip:none">none</dfn></dt>
30863086
<dd>Skip nothing: text-decoration is drawn for all text content
30873087
and for inline replaced elements.</dd>
3088-
<dt><dfn title="text-decoration-skip:images">images</dfn></dt>
3089-
<dd>Skip this element if it is an inline replaced element.</dd>
3088+
<dt><dfn title="text-decoration-skip:objects">objects</dfn></dt>
3089+
<dd>Skip this element if it is an atomic inline (such as an
3090+
image or inline-block).</dd>
30903091
<dt><dfn title="text-decoration-skip:spaces">spaces</dfn></dt>
30913092
<dd>Skip white space: this includes regular spaces (U+0020) and
30923093
tabs (U+0009), as well as nbsp (U+00A0), ideographic space
@@ -3099,8 +3100,7 @@ <h4 id="text-decoration-skip">
30993100
otherwise cross over a glyph. The UA may also skip a small
31003101
distance to either side of the glyph outline.</dd>
31013102
<dt><dfn title="text-decoration-skip:all">all</dfn></dt>
3102-
<dd>Skip over all content in this element. This value does
3103-
<em>not</em> affect text decorations drawn by this element.</dd>
3103+
<dd>Skip over all content in this element.</dd>
31043104
</dl>
31053105

31063106
<p class="issue">Do we need a value that <em>doesn't</em> skip

0 commit comments

Comments
 (0)