- From: <fantasai.lists@inkedblade.net>
- Date: Wed, 12 Jan 2011 12:52:42 -0600
- To: www-style@w3.org
CSS-ISSUE-153
http://www.w3.org/Style/CSS/Tracker/issues/153
The 'speak' property has two functions: one is to dual as the speech
equivalent of 'visiblity', the other is to specify how to speak the
contents of an element.
This creates unintentional problems with, e.g.
acronym {
speak: spell-out;
}
p.hide {
speak: none;
}
<p>Thing to hide <acronym>WOAH</acronym> more stuff to hide</p>
The WOAH is suddenly injected into the speech rendering due to the
acronym rule, even though that is probably not what's intended.
These functions should be separated into two properties, or the
'none' value removed entirely.
~fantasai
Received on Wednesday, 12 January 2011 18:53:14 UTC