Skip to content

Commit 985e275

Browse files
committed
[css-properties-values] Fix linking.
1 parent 9a2db8f commit 985e275

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

css-properties-values-api/Overview.bs

+6-7
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ Repository: w3c/css-houdini-drafts
3535

3636
<pre class='link-defaults'>
3737
spec:css-transforms-1; type:type; text:<transform-function>
38-
spec:css-conditional-3; type:method; text:supports(property, value)
3938
spec:cssom-1; type:interface; text:CSS
4039
</pre>
4140

@@ -91,7 +90,7 @@ following members:
9190
:: True if this custom property should inherit down the DOM tree; False otherwise.
9291

9392
: <dfn dict-member for=PropertyDescriptor>initialValue</dfn>
94-
:: The initial value of this custom property.
93+
:: The initial value of this custom property.
9594

9695
The {{registerProperty()}} function {#the-registerproperty-function}
9796
--------------------------------------------------------------------
@@ -120,19 +119,19 @@ not parseable using the provided {{PropertyDescriptor/syntax}} must cause it to
120119
throw a {{SyntaxError}}. If no {{PropertyDescriptor/initialValue}} is provided and the
121120
{{PropertyDescriptor/syntax}} is '*', then a special initial value used. This initial
122121
value must be considered parseable by {{registerProperty()}} but invalid at computed
123-
value time. Initial values that are not computationally idempotent must also cause
122+
value time. Initial values that are not computationally idempotent must also cause
124123
{{registerProperty()}} to throw a {{SyntaxError}}.
125124

126125
<div class='example'>
127126
For example, "3cm" is a computationally idempotent length, and hence valid as an initial value.
128127
However, "3em" is not (depending on the environment, 3em could compute to
129-
multiple different values). Additionally, "var(--foo)" is not computationally idempotent.
128+
multiple different values). Additionally, "var(--foo)" is not computationally idempotent.
130129
</div>
131130

132131
Issue: define computational idempotency.
133132

134133
Issue(121): Is computational idempotency the right thing to do here? We could also just
135-
resolve any relative values once (against all the other initial values) and use
134+
resolve any relative values once (against all the other initial values) and use
136135
that. OR! We could allow specified values and just fix our engines...
137136

138137
When a custom property is registered with a given type, the process via which specified
@@ -161,7 +160,7 @@ are valid. Hence, the result of this stylesheet:
161160
<pre class='lang-css'>
162161
.thing {
163162
--my-color: green;
164-
--my-color: url("not-a-color");
163+
--my-color: url("not-a-color");
165164
color: var(--my-color);
166165
}
167166
</pre>
@@ -318,7 +317,7 @@ this is standard across implementations to avoid interop issues.
318317
Conditional Rules {#conditional-rules}
319318
--------------------------------------
320319

321-
@supports rules and the <a method for=CSS>supports()</a> method behave as specified
320+
''@supports'' rules and the {{CSS/supports(conditionText)}} method behave as specified
322321
in [[!css-variables]].
323322

324323
Note: In other words, for the purpose of determining whether a value is

0 commit comments

Comments
 (0)