HtmlElementFactory
Provides string to HTMLElement instance creation mappings.
using AngleSharp.Css;
using AngleSharp.Css;
using AngleSharp.Extensions;
namespace AngleSharp.Dom.Css
{
internal sealed class CssTextDecorationProperty : CssShorthandProperty
{
private static readonly IValueConverter StyleConverter = Converters.WithAny(PropertyNames.TextDecorationColor.For(), PropertyNames.TextDecorationStyle.For(), PropertyNames.TextDecorationLine.For()).OrDefault();
internal override IValueConverter Converter => StyleConverter;
internal CssTextDecorationProperty()
: base(PropertyNames.TextDecoration, PropertyFlags.Animatable)
{
}
}
}