- From: CVS User ylafon <cvsmail@w3.org>
- Date: Fri, 04 Jan 2013 15:41:44 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/properties/css2
In directory roscoe:/tmp/cvs-serv18270/css2
Modified Files:
Css2Style.java
Log Message:
voice-balance per http://www.w3.org/TR/2012/CR-css3-speech-20120320/#voice-balance
--- /sources/public/2002/css-validator/org/w3c/css/properties/css2/Css2Style.java 2013/01/04 15:24:38 1.44
+++ /sources/public/2002/css-validator/org/w3c/css/properties/css2/Css2Style.java 2013/01/04 15:41:44 1.45
@@ -1,5 +1,5 @@
//
-// $Id: Css2Style.java,v 1.44 2013/01/04 15:24:38 ylafon Exp $
+// $Id: Css2Style.java,v 1.45 2013/01/04 15:41:44 ylafon Exp $
// From Philippe Le Hegaret (Philippe.Le_Hegaret@sophia.inria.fr)
//
// (c) COPYRIGHT MIT and INRIA, 1997.
@@ -63,7 +63,7 @@
import org.w3c.css.values.CssIdent;
/**
- * @version $Revision: 1.44 $
+ * @version $Revision: 1.45 $
*/
public class Css2Style extends ACssStyle {
@@ -88,8 +88,7 @@
public CssPauseAfter cssPauseAfter;
public CssPauseBefore cssPauseBefore;
public CssPause cssPause;
- public CssVoiceDuration cssVoiceDuration;
- public CssVoiceStress cssVoiceStress;
+
/**
* font properties
@@ -664,23 +663,6 @@
return cssPause;
}
- public final CssVoiceStress getVoiceStress() {
- if (cssVoiceStress == null) {
- cssVoiceStress =
- (CssVoiceStress) style.CascadingOrder(new CssVoiceStress(),
- style, selector);
- }
- return cssVoiceStress;
- }
-
- public final CssVoiceDuration getVoiceDuration() {
- if (cssVoiceDuration == null) {
- cssVoiceDuration =
- (CssVoiceDuration) style.CascadingOrder(new CssVoiceDuration(),
- style, selector);
- }
- return cssVoiceDuration;
- }
/**
* Find conflicts in this Style
Received on Friday, 4 January 2013 15:41:45 UTC