diff --git a/specification.html b/specification.html index 1b31226..55c70dc 100644 --- a/specification.html +++ b/specification.html @@ -1012,10 +1012,10 @@

1.5.6*:(background) { } //which is equivalent to *:(background != no) { } -//similarly, this matches invisible elements -*:(!visible) { } +//similarly, this matches elements which were taken out of the flow +*:(!flow) { } //which is equivalent to -*:(visible = no) { } +*:(flow = no) { } //matches all elements which are using a font object named serif *:(font = serif) { } //matches all elements that are taller than 300 and not wider than 400 @@ -1231,9 +1231,9 @@

The attribute function
{ //this would replace the content text of the element //by the value of its href attribute - content: attr(href of @this); + text: attr(href); //which is equivalent to - content: attr(href); + text.value: attr(href of @this); }
The selector function

The syntax is sel(selector) and can be used anywhere elements are accepted.