- From: CVS User ylafon <cvsmail@w3.org>
- Date: Fri, 04 Jan 2013 15:14:44 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/properties/aural In directory roscoe:/tmp/cvs-serv3808/aural Modified Files: ACssStyle.java Removed Files: ACssVoiceStress.java Log Message: voice-stress per http://www.w3.org/TR/2012/CR-css3-speech-20120320/#voice-stress --- /sources/public/2002/css-validator/org/w3c/css/properties/aural/ACssStyle.java 2013/01/04 14:56:30 1.20 +++ /sources/public/2002/css-validator/org/w3c/css/properties/aural/ACssStyle.java 2013/01/04 15:14:44 1.21 @@ -1,5 +1,5 @@ // -// $Id: ACssStyle.java,v 1.20 2013/01/04 14:56:30 ylafon Exp $ +// $Id: ACssStyle.java,v 1.21 2013/01/04 15:14:44 ylafon Exp $ // From Philippe Le Hegaret (Philippe.Le_Hegaret@sophia.inria.fr) // // (c) COPYRIGHT MIT and INRIA, 1997. @@ -13,7 +13,7 @@ import org.w3c.css.util.Warnings; /** - * @version $Revision: 1.20 $ + * @version $Revision: 1.21 $ */ public class ACssStyle extends Css1Style { @@ -28,7 +28,6 @@ ACssVoiceFamilyCSS3 acssVoiceFamilyCSS3; ACssVoiceRate acssVoiceRate; ACssVoicePitchRange acssVoicePitchRange; - ACssVoiceStress acssVoiceStress; ACssVoiceDuration acssVoiceDuration; /** @@ -115,14 +114,6 @@ return acssVoicePitchRange; } - public ACssVoiceStress getVoiceStress() { - if (acssVoiceStress == null) { - acssVoiceStress = - (ACssVoiceStress) style.CascadingOrder(new ACssVoiceStress(), style, selector); - } - return acssVoiceStress; - } - public ACssVoiceDuration getVoiceDuration() { if (acssVoiceDuration == null) { acssVoiceDuration =
Received on Friday, 4 January 2013 15:14:45 UTC