HTMLWbrElement
Represents the HTML wbr (word-break-opportunity) element.
This element is used to indicate that the position is a good
point for inserting a possible line-break.
namespace AngleSharp.DOM.Html
{
internal sealed class HTMLWbrElement : HTMLElement
{
internal const string Tag = "wbr";
protected internal override bool IsSpecial => true;
internal HTMLWbrElement()
{
_name = "wbr";
}
}
}