AngleSharp by Florian Rappl

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

.NET API 521,216 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.
namespace AngleSharp.DOM.Html { internal sealed class HTMLWbrElement : HTMLElement { internal const string Tag = "wbr"; protected internal override bool IsSpecial => true; internal HTMLWbrElement() { _name = "wbr"; } } }