Skip to content

Commit c68cbbe

Browse files
committed
solid-color and solid-opacity are not in the property list of SVG <http://www.w3.org/TR/2011/REC-SVG11-20110816/propidx.html>
1 parent 93ba145 commit c68cbbe

File tree

4 files changed

+0
-428
lines changed

4 files changed

+0
-428
lines changed

org/w3c/css/properties/SVGProperties.properties

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,6 @@ stop-color: org.w3c.css.properties.svg.StopColor
5858
stroke: org.w3c.css.properties.svg.CssStroke
5959
fill: org.w3c.css.properties.svg.CssFill
6060
font-size: org.w3c.css.properties.css21.CssFontSize
61-
solid-color: org.w3c.css.properties.svg.SolidColor
62-
solid-opacity: org.w3c.css.properties.svg.SolidOpacity
6361
@color-profile.name org.w3c.css.properties.svg.colorprofile.CssName
6462
@color-profile.rendering-intent org.w3c.css.properties.svg.colorprofile.CssRenderingIntent
6563
@color-profile.src org.w3c.css.properties.svg.colorprofile.CssSrc

org/w3c/css/properties/svg/SVGBasicStyle.java

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ public class SVGBasicStyle extends SVGTinyStyle {
2929
EnableBackground enableBackground;
3030
StopOpacity stopOpacity;
3131
StopColor stopColor;
32-
SolidColor solidColor;
33-
SolidOpacity solidOpacity;
3432

3533
public CssColorInterpolation cssColorInterpolation;
3634
public CssColorRendering cssColorRendering;
@@ -213,22 +211,4 @@ public StopColor getStopColor() {
213211
return stopColor;
214212
}
215213

216-
public SolidColor getSolidColor() {
217-
if (solidColor == null) {
218-
solidColor =
219-
(SolidColor) style.CascadingOrder(
220-
new SolidColor(), style, selector);
221-
}
222-
return solidColor;
223-
}
224-
225-
public SolidOpacity getSolidOpacity() {
226-
if (solidOpacity == null) {
227-
solidOpacity =
228-
(SolidOpacity) style.CascadingOrder(
229-
new SolidOpacity(), style, selector);
230-
}
231-
return solidOpacity;
232-
}
233-
234214
}

org/w3c/css/properties/svg/SolidColor.java

Lines changed: 0 additions & 236 deletions
This file was deleted.

0 commit comments

Comments
 (0)