CssBorderImageWidthProperty
More information available at:
https://developer.mozilla.org/en-US/docs/Web/CSS/border-image-width
using AngleSharp.Css;
using AngleSharp.Css.Values;
using AngleSharp.Extensions;
namespace AngleSharp.Dom.Css
{
internal sealed class CssBorderImageWidthProperty : CssProperty
{
internal static readonly IValueConverter TheConverter = Converters.ImageBorderWidthConverter.Periodic();
private static readonly IValueConverter StyleConverter = TheConverter.OrDefault(Length.Full);
internal override IValueConverter Converter => StyleConverter;
internal CssBorderImageWidthProperty()
: base(PropertyNames.BorderImageWidth, PropertyFlags.None)
{
}
}
}