HTMLBRElement
Represents the HTML br element.
namespace AngleSharp.DOM.Html
{
public sealed class HTMLBRElement : HTMLElement
{
internal const string Tag = "br";
protected internal override bool IsSpecial => true;
internal HTMLBRElement()
{
_name = "br";
}
}
}