Skip to content

Commit 3add502

Browse files
committed
cmyk -> device-cmyk
1 parent a75fb9f commit 3add502

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

css3-gcpm/Overview.src.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1388,7 +1388,7 @@ <h3>The 'hyphenate-resource' property</h3>
13881388
<td>specified value
13891389
</table>
13901390

1391-
<p>This property specifies a comma-separated list of external resources that can help the UA determine hyphenation points. If more than one resource is specified, the UA should consult each resource until it finds one that is able to determine hyphenation points in a word. The 'none' value indicates that no external resources are available. In any case, the UA can also use local resources not listed on this property.
1391+
<p>This property specifies a comma-separated list of external resources that can help the UA determine hyphenation points. If more than one resource is specified, the UA should consult each resource &ndash; in turn, from the beginning &ndash; until it finds one that is able to determine hyphenation points in a word. The 'none' value indicates that no external resources are available. In any case, the UA can also use local resources not listed on this property.
13921392

13931393
<div class="example">
13941394

@@ -2238,12 +2238,12 @@ <h2>Bookmarks</h2>
22382238
<h2>CMYK colors</h2>
22392239

22402240
<p>Printers do not use RGB colors, they (often) use CMYK: cyan,
2241-
magenta, yellow and black. The ''cmyk()'' functional value allows
2241+
magenta, yellow and black. The ''device-cmyk()'' functional value allows
22422242
style sheets to express device-dependent CMYK colors.
22432243

22442244
<div class="example">
22452245
<pre>
2246-
h3 { color: cmyk(0.8, 0.5, 0.0, 0.3) }
2246+
h3 { color: device-cmyk(0.8, 0.5, 0.0, 0.3) }
22472247
</pre>
22482248
</div>
22492249

@@ -2258,11 +2258,11 @@ <h2>CMYK colors</h2>
22582258
<pre>
22592259
h3 {
22602260
color: red;
2261-
color: cmyk(0.5, 0.1, 0.0, 0.2);
2261+
color: device-cmyk(0.5, 0.1, 0.0, 0.2);
22622262
}
22632263
</pre>
22642264

2265-
<p>User Agents that do not understand the <code>cmyk()</code> value, will use the first color (red). User agents that understand <code>cmyk()</code> will use the second color (which is bluish).
2265+
<p>User Agents that do not understand the <code>device-cmyk()</code> value, will use the first color (red). User agents that understand <code>device-cmyk()</code> will use the second color (which is bluish).
22662266
</div>
22672267

22682268

@@ -3301,7 +3301,7 @@ <h3>Aligning baselines</h3>
33013301
http://www.w3.org/Style/Group/css3-src/css3-linebox/Overview.html#LineStacking
33023302
-->
33033303

3304-
<p class=note>A similar idea &mdash; 'line-stacking-strategy: grid-height' &mdash; was proposed in a <a href="http://www.w3.org/TR/css3-linebox/#line-stacking-strategy">previous CSS draft</a>. The 'line-stacking-strategy' property is <a href="http://www.w3.org/TR/xsl/#line-stacking-strategy">used in XSL</a>.
3304+
<p class=note>A similar idea &mdash; 'line-stacking-strategy: grid-height' &mdash; was proposed in a <a href="http://www.w3.org/TR/css3-linebox/#line-stacking-strategy">previous version of the CSS3 line module</a>. The 'line-stacking-strategy' property is <a href="http://www.w3.org/TR/xsl/#line-stacking-strategy">used in XSL</a>.
33053305

33063306

33073307

0 commit comments

Comments
 (0)