CssTextDecorationLineProperty
Information:
https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration-line
Gets the enumeration over all selected styles for text decoration
lines.
using AngleSharp.Css;
using AngleSharp.Extensions;
namespace AngleSharp.Dom.Css
{
internal sealed class CssTextDecorationLineProperty : CssProperty
{
private static readonly IValueConverter ListConverter = Converters.TextDecorationLinesConverter.OrDefault();
internal override IValueConverter Converter => ListConverter;
internal CssTextDecorationLineProperty()
: base(PropertyNames.TextDecorationLine, PropertyFlags.None)
{
}
}
}