Re: Remove deprecated CSS from the stylesheets?

[Adding the Webmaster]


On Apr 21, 2014, at 8:42 PM, "Tab Atkins Jr." <jackalmage@gmail.com> wrote:

> The official W3C stylesheets all have an @media aural {...} block,
> which is deprecated, and which contains deprecated CSS2.1 aural
> properties.
> 
> These should either be removed, or replaced with equivalents from the
> Speech module.
> 
> For example, this block is from the WD stylesheet:
> 
> ```
> @media aural {
>  h1, h2, h3 { stress: 20; richness: 90 }
>  .hide { speak: none }
>  p.copyright { volume: x-soft; speech-rate: x-fast }
>  dt { pause-before: 63ms }
>  pre { speak-punctuation: code }
> }
> ```
> 
> This should either be removed, or replaced with:
> 
> ```
> @media speech {
>  h1, h2, h3 { voice-stress: moderate; }
>  .hide { speak: none; }
>  p.copyright { voice-volume: x-soft; voice-rate: x-fast; }
>  dt { pause-before: 63ms; }
> }
> ```

Thanks for the replacement text; done.

Ian


> 
> ~TJ
> 
> 

--
Ian Jacobs <ij@w3.org>      http://www.w3.org/People/Jacobs
Tel:                       +1 718 260 9447

Received on Tuesday, 22 April 2014 03:28:34 UTC