- From: Yves Lafon via cvs-syncmail <cvsmail@w3.org>
- Date: Sat, 18 Aug 2012 05:36:37 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/properties/css3
In directory hutz:/tmp/cvs-serv29528/css3
Modified Files:
Css3Style.java
Removed Files:
CssTextLTColor.java CssTextLTMode.java CssTextLTStyle.java
CssTextLineThrough.java
Log Message:
removed no longer defined properties
--- CssTextLTStyle.java DELETED ---
Index: Css3Style.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css3/Css3Style.java,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -d -r1.38 -r1.39
--- Css3Style.java 17 Aug 2012 05:16:20 -0000 1.38
+++ Css3Style.java 18 Aug 2012 05:36:34 -0000 1.39
@@ -82,10 +82,6 @@
CssTextUlMode cssTextUlMode;
CssTextUlPos cssTextUlPos;
CssTextUnderLine cssTextUnderLine;
- CssTextLTStyle cssTextLTStyle;
- CssTextLTColor cssTextLTColor;
- CssTextLTMode cssTextLTMode;
- CssTextLineThrough cssTextLineThrough;
CssTextCombine cssTextCombine;
CssMedia cssMedia;
CssDisplayModel cssDisplayModel;
@@ -544,42 +540,6 @@
return cssTextUnderLine;
}
- public CssTextLTStyle getTextLTStyle() {
- if (cssTextLTStyle == null) {
- cssTextLTStyle =
- (CssTextLTStyle) style.CascadingOrder(
- new CssTextLTStyle(), style, selector);
- }
- return cssTextLTStyle;
- }
-
- public CssTextLTColor getTextLTColor() {
- if (cssTextLTColor == null) {
- cssTextLTColor =
- (CssTextLTColor) style.CascadingOrder(
- new CssTextLTColor(), style, selector);
- }
- return cssTextLTColor;
- }
-
- public CssTextLTMode getTextLTMode() {
- if (cssTextLTMode == null) {
- cssTextLTMode =
- (CssTextLTMode) style.CascadingOrder(
- new CssTextLTMode(), style, selector);
- }
- return cssTextLTMode;
- }
-
- public CssTextLineThrough getTextLineThrough() {
- if (cssTextLineThrough == null) {
- cssTextLineThrough =
- (CssTextLineThrough) style.CascadingOrder(
- new CssTextLineThrough(), style, selector);
- }
- return cssTextLineThrough;
- }
-
public CssTextCombine getTextCombine() {
if (cssTextCombine == null) {
cssTextCombine =
--- CssTextLineThrough.java DELETED ---
--- CssTextLTColor.java DELETED ---
--- CssTextLTMode.java DELETED ---
Received on Saturday, 18 August 2012 05:36:37 UTC