@@ -19,6 +19,9 @@ Include Can I Use Panels: yes
19
19
<pre class='link-defaults'>
20
20
spec: css2;
21
21
type: property; text: border-collapse
22
+ spec: css-backgrounds-3; type: property;
23
+ text: border-color
24
+ text: box-shadow
22
25
spec: css-color-4; type: value; text: currentcolor
23
26
spec: css-color-5; type: type; text: <color>
24
27
spec: css-color-5; type:type; text: <absolute-color-function>
@@ -29,6 +32,7 @@ spec: css-sizing-3; type: property;
29
32
spec: cssom-1; type:dfn; text:owner node; for:CSSStyleSheet;
30
33
spec: selectors-4; type: type; text: <q-name>
31
34
spec: infra; type: dfn; text: string;
35
+ spec: css-2023; type: dfn; text: ua
32
36
</pre>
33
37
<pre class="ignored-specs">
34
38
spec: css-device-adapt-1;
@@ -58,11 +62,11 @@ Introduction</h2>
58
62
<h3 id="placement">
59
63
Module Interactions</h3>
60
64
61
- This module replaces and extends the data type definitions in [[!CSS21 ]]
65
+ This module replaces and extends the data type definitions in [[!CSS2 ]]
62
66
sections
63
- <a href="https://www.w3.org/TR/CSS21 /about.html#value-defs">1.4.2.1</a> ,
64
- <a href="https://www.w3.org/TR/CSS21 /syndata.html#values">4.3</a> ,
65
- and <a href="https://www.w3.org/TR/CSS21 /aural.html#aural-intro">A.2</a> .
67
+ <a href="https://www.w3.org/TR/CSS2 /about.html#value-defs">1.4.2.1</a> ,
68
+ <a href="https://www.w3.org/TR/CSS2 /syndata.html#values">4.3</a> ,
69
+ and <a href="https://www.w3.org/TR/CSS2 /aural.html#aural-intro">A.2</a> .
66
70
67
71
<!--
68
72
██████ ██ ██ ██ ██ ████████ ███ ██ ██
@@ -892,7 +896,7 @@ Quoted Strings: the <<string>> type</h3>
892
896
893
897
<div class=example>
894
898
Double quotes cannot occur inside double quotes, unless
895
- <a href="https://www.w3.org/TR/CSS21 /syndata.html#escaped-characters">escaped</a>
899
+ <a href="https://www.w3.org/TR/CSS2 /syndata.html#escaped-characters">escaped</a>
896
900
(as <code> "\""</code> or as <code> "\22"</code> ).
897
901
Analogously for single quotes (<code> '\''</code> or <code> '\27'</code> ).
898
902
@@ -1251,7 +1255,7 @@ Range Restrictions and Range Definition Notation</h3>
1251
1255
Properties can restrict numeric values to some range.
1252
1256
If the value is outside the allowed range,
1253
1257
then unless otherwise specified,
1254
- the declaration is invalid and must be <a href="https://www.w3.org/TR/CSS21 /conform.html#ignore">ignored</a> .
1258
+ the declaration is invalid and must be <a href="https://www.w3.org/TR/CSS2 /conform.html#ignore">ignored</a> .
1255
1259
Range restrictions can be annotated in the numeric type notation
1256
1260
using <dfn export local-lt="bracketed range notation">CSS bracketed range notation</dfn> --
1257
1261
<code> [<var>min</var>,<var>max</var>] </code> --
@@ -1723,7 +1727,7 @@ Distance Units: the <<length>> type</h2>
1723
1727
1724
1728
Properties may restrict the length value to some range.
1725
1729
If the value is outside the allowed range,
1726
- the declaration is invalid and must be <a href="https://www.w3.org/TR/CSS21 /conform.html#ignore">ignored</a> .
1730
+ the declaration is invalid and must be <a href="https://www.w3.org/TR/CSS2 /conform.html#ignore">ignored</a> .
1727
1731
1728
1732
<wpt>
1729
1733
css/mediaqueries/min-width-001.xht
@@ -2115,7 +2119,7 @@ Font-relative Lengths: the ''em'', ''rem'', ''ex'', ''rex'', ''cap'', ''rcap'',
2115
2119
Viewport-percentage Lengths: the ''*vw'', ''*vh'', ''*vi'', ''*vb'', ''*vmin'', ''*vmax'' units</h4>
2116
2120
2117
2121
The <dfn export>viewport-percentage lengths</dfn> are relative to the size of the
2118
- <a href="https://www.w3.org/TR/CSS21 /visudet.html#containing-block-details">initial containing block</a> --
2122
+ <a href="https://www.w3.org/TR/CSS2 /visudet.html#containing-block-details">initial containing block</a> --
2119
2123
which is itself based on the size of either
2120
2124
the viewport (for [=continuous media=] )
2121
2125
or the [=page area=] (for [=paged media=] ).
@@ -2660,7 +2664,7 @@ Duration Units: the <<time>> type and ''s'', ''ms'' units</h3>
2660
2664
2661
2665
Properties may restrict the time value to some range.
2662
2666
If the value is outside the allowed range,
2663
- the declaration is invalid and must be <a href="https://www.w3.org/TR/CSS21 /conform.html#ignore">ignored</a> .
2667
+ the declaration is invalid and must be <a href="https://www.w3.org/TR/CSS2 /conform.html#ignore">ignored</a> .
2664
2668
2665
2669
<wpt>
2666
2670
css/css-values/calc-time-values.html
@@ -4673,7 +4677,7 @@ Computed Value</h3>
4673
4677
e.g. ''calc(100% - 100% + 1px)'' resolves to ''calc(0% + 1px)'' ,
4674
4678
not to ''1px'' .
4675
4679
If there are special rules for computing percentages in a value
4676
- (e.g. <a href="https://www.w3.org/TR/CSS21 /visudet.html#the-height-property">the <css>height</css> property</a> ),
4680
+ (e.g. <a href="https://www.w3.org/TR/CSS2 /visudet.html#the-height-property">the <css>height</css> property</a> ),
4677
4681
they apply whenever a [=math function=] contains percentages.
4678
4682
4679
4683
The [=calculation tree=] is again simplified at [=used value=] time;
0 commit comments