[css3-speech] Drop phonemes section, mark properties

Just from a quick scan through the last WD...

http://www.w3.org/TR/2004/WD-css3-speech-20041216/#phonetic-props

The phonemes section of css3-speech seems a little too closely
tied to the content to be stylistic. I suggest dropping it; the
use case should be handled by the markup somehow.

http://www.w3.org/TR/2004/WD-css3-speech-20041216/#mark-props

Also, the 'mark' properties seem to be redundant with using
@media speech with :before/:after. Claudio, do you remember
why it was added?

h1 {mark-before: "section"}
p {mark-before: attr(id) }

vs

@media speech {
   h1:before { content: "section"; }
   p:before { content: attr(id); }
}

~fantasai

Received on Wednesday, 20 October 2010 20:52:13 UTC