// font-style
return new Italics(value);
} else if (name.equals("text-decoration")) {
if (value.getCssText().toLowerCase().equals("line-through")
|| value.getCssText().toLowerCase().equals("[line-through]")) {
return new Strike(value);
} else if (value.getCssText().toLowerCase().equals("underline")
|| value.getCssText().toLowerCase().equals("[underline]")) {
return new Underline(value);
} else if (value.getCssText().toLowerCase().equals("none")) {
return null;