CssBackfaceVisibilityProperty
Information can be found on MDN:
https://developer.mozilla.org/en-US/docs/Web/CSS/backface-visibility
Gets if the back face is visible, allowing the front face to be
displayed mirrored. Otherwise the back face is not visible, hiding
the front face.
using AngleSharp.Css;
using AngleSharp.Extensions;
namespace AngleSharp.Dom.Css
{
internal sealed class CssBackfaceVisibilityProperty : CssProperty
{
private static readonly IValueConverter StyleConverter = Converters.BackfaceVisibilityConverter.OrDefault(true);
internal override IValueConverter Converter => StyleConverter;
internal CssBackfaceVisibilityProperty()
: base(PropertyNames.BackfaceVisibility, PropertyFlags.None)
{
}
}
}