You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<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 – in turn, from the beginning – 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.
1392
1392
1393
1393
<divclass="example">
1394
1394
@@ -2238,12 +2238,12 @@ <h2>Bookmarks</h2>
2238
2238
<h2>CMYK colors</h2>
2239
2239
2240
2240
<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
2242
2242
style sheets to express device-dependent CMYK colors.
2243
2243
2244
2244
<divclass="example">
2245
2245
<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) }
2247
2247
</pre>
2248
2248
</div>
2249
2249
@@ -2258,11 +2258,11 @@ <h2>CMYK colors</h2>
2258
2258
<pre>
2259
2259
h3 {
2260
2260
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);
2262
2262
}
2263
2263
</pre>
2264
2264
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).
<pclass=note>A similar idea — 'line-stacking-strategy: grid-height' — was proposed in a <ahref="http://www.w3.org/TR/css3-linebox/#line-stacking-strategy">previous CSS draft</a>. The 'line-stacking-strategy' property is <ahref="http://www.w3.org/TR/xsl/#line-stacking-strategy">used in XSL</a>.
3304
+
<pclass=note>A similar idea — 'line-stacking-strategy: grid-height' — was proposed in a <ahref="http://www.w3.org/TR/css3-linebox/#line-stacking-strategy">previous version of the CSS3 line module</a>. The 'line-stacking-strategy' property is <ahref="http://www.w3.org/TR/xsl/#line-stacking-strategy">used in XSL</a>.
0 commit comments