AngleSharp by Florian Rappl

<PackageReference Include="AngleSharp" Version="0.8.1" />

.NET API 1,172,480 bytes

 HtmlWbrElement

sealed class HtmlWbrElement : HtmlElement
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) : base(owner, Tags.Wbr, NodeFlags.SelfClosing | NodeFlags.Special) { } } }