CssTextDecorationStyleProperty
Information:
https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration-style
Gets the selected decoration style.
using AngleSharp.Css;
using AngleSharp.Extensions;
namespace AngleSharp.Dom.Css
{
internal sealed class CssTextDecorationStyleProperty : CssProperty
{
private static readonly IValueConverter StyleConverter = Converters.TextDecorationStyleConverter.OrDefault(TextDecorationStyle.Solid);
internal override IValueConverter Converter => StyleConverter;
internal CssTextDecorationStyleProperty()
: base(PropertyNames.TextDecorationStyle, PropertyFlags.None)
{
}
}
}