- From: CVS User ylafon <cvsmail@w3.org>
- Date: Mon, 17 Dec 2012 14:21:17 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/properties/aural
In directory roscoe:/tmp/cvs-serv5817/aural
Modified Files:
ACssStyle.java
Removed Files:
ACssVolume.java
Log Message:
volume per css2/css21 (and deprecated in css3)
--- /sources/public/2002/css-validator/org/w3c/css/properties/aural/ACssStyle.java 2011/09/11 20:30:22 1.7
+++ /sources/public/2002/css-validator/org/w3c/css/properties/aural/ACssStyle.java 2012/12/17 14:21:16 1.8
@@ -1,5 +1,5 @@
//
-// $Id: ACssStyle.java,v 1.7 2011/09/11 20:30:22 ylafon Exp $
+// $Id: ACssStyle.java,v 1.8 2012/12/17 14:21:16 ylafon Exp $
// From Philippe Le Hegaret (Philippe.Le_Hegaret@sophia.inria.fr)
//
// (c) COPYRIGHT MIT and INRIA, 1997.
@@ -14,11 +14,10 @@
import org.w3c.css.values.CssPercentage;
/**
- * @version $Revision: 1.7 $
+ * @version $Revision: 1.8 $
*/
public class ACssStyle extends Css1Style {
- ACssVolume acssVolume;
ACssPause acssPause = new ACssPause(); // it's a macro
ACssCue acssCue = new ACssCue(); // it's a macro
ACssSpeechRate acssSpeechRate;
@@ -48,16 +47,6 @@
ACssPhonemes acssPhonemes;
/**
- * Get the volume
- */
- public ACssVolume getVolume() {
- if (acssVolume == null) {
- acssVolume = (ACssVolume) style.CascadingOrder(new ACssVolume(), style, selector);
- }
- return acssVolume;
- }
-
- /**
* Get the pause after
*/
public ACssPauseAfter getPauseAfter() {
Received on Monday, 17 December 2012 14:21:22 UTC