CssUnicodeRangeProperty
More information available at:
https://developer.mozilla.org/en/docs/Web/CSS/@font-face
using AngleSharp.Css;
namespace AngleSharp.Dom.Css
{
internal sealed class CssUnicodeRangeProperty : CssProperty
{
public CssUnicodeRangeProperty(CssStyleDeclaration style)
: base(PropertyNames.UnicodeRange, style, PropertyFlags.None)
{
}
protected override object GetDefault(IElement element)
{
return null;
}
protected override object Compute(IElement element)
{
return null;
}
protected override bool IsValid(ICssValue value)
{
return true;
}
}
}