[CSS3 Conditional Rules] Last example of Example VIII for @supports incorrect

Hello,

6. Feature queries: the '@supports' rule
http://www.w3.org/TR/css3-conditional/#at-supports

in its Example VIII says:

Instead, authors must write one of the following:

(...)

@supports (transition-property: color) or
          ((animation-name: foo)) and
           (transform: rotate(10deg))) {
  // ...
}

where there are 5 opening "(" parenthesis and 6 closing ")" parenthesis.

but it should be instead

@supports (transition-property: color) or
          ((animation-name: foo) and
           (transform: rotate(10deg))) {
  // ...
}

with 5 opening and closing parenthesis.

Gérard
-- 
CSS 2.1 Test suite RC6, March 23rd 2011
http://test.csswg.org/suites/css2.1/20110323/html4/toc.html

Contributions to CSS 2.1 test suite
http://www.gtalbot.org/BrowserBugsSection/css21testsuite/

Web authors' contributions to CSS 2.1 test suite
http://www.gtalbot.org/BrowserBugsSection/css21testsuite/web-authors-contributions-css21-testsuite.html

Received on Friday, 3 August 2012 20:46:21 UTC