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.
using AngleSharp.Html;
namespace AngleSharp.Dom.Html
{
internal sealed class HtmlWbrElement : HtmlElement
{
public HtmlWbrElement(Document owner, string prefix = null)
: base(owner, TagNames.Wbr, prefix, NodeFlags.SelfClosing | NodeFlags.Special)
{
}
}
}