implements CSSCompoundValueReadHandler
{
public TextDecorationReadHandler()
{
super(false);
addValue(new CSSConstant("none"));
addValue(new CSSConstant("underline"));
addValue(new CSSConstant("overline"));
addValue(new CSSConstant("line-through"));
addValue(new CSSConstant("blink"));
}