Skip to content

Commit 8d5a56c

Browse files
committed
#92 and 5084f87
1 parent 9516f5a commit 8d5a56c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Diff for: specification.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -1012,10 +1012,10 @@ <h4 class="title"><span class="number"><a href="#n1.5.6" id="n1.5.6">1.5.6</a></
10121012
<span class="selector">*</span>:(<span class="property">background</span>) { }
10131013
<span class="comment">//which is equivalent to</span>
10141014
<span class="selector">*</span>:(<span class="property">background</span> != no) { }
1015-
<span class="comment">//similarly, this matches invisible elements</span>
1016-
<span class="selector">*</span>:(<span class="modifier">!</span><span class="property">visible</span>) { }
1015+
<span class="comment">//similarly, this matches elements which were taken out of the flow</span>
1016+
<span class="selector">*</span>:(<span class="modifier">!</span><span class="property">flow</span>) { }
10171017
<span class="comment">//which is equivalent to</span>
1018-
<span class="selector">*</span>:(<span class="property">visible</span> = no) { }
1018+
<span class="selector">*</span>:(<span class="property">flow</span> = no) { }
10191019
<span class="comment">//matches all elements which are using a font object named <em>serif</em></span>
10201020
<span class="selector">*</span>:(<span class="property">font</span> = serif) { }
10211021
<span class="comment">//matches all elements that are taller than 300 and not wider than 400</span>
@@ -1231,9 +1231,9 @@ <h5><a href="#n1.6.3.2" id="n1.6.3.2">The attribute function</a></h5>
12311231
{
12321232
<span class="comment">//this would replace the content text of the element
12331233
//by the value of its href attribute</span>
1234-
<span class="property">content</span>: attr(href of <span class="object">@this</span>);
1234+
<span class="property">text</span>: attr(href);
12351235
<span class="comment">//which is equivalent to</span>
1236-
<span class="property">content</span>: attr(href);
1236+
<span class="property">text.value</span>: attr(href of <span class="object">@this</span>);
12371237
}</pre>
12381238
<h5><a href="#n1.6.3.3" id="n1.6.3.3">The selector function</a></h5>
12391239
<p>The syntax is <code>sel(<span class="selector">selector</span>)</code> and can be used anywhere elements are accepted.</p>

0 commit comments

Comments
 (0)