HtmlNoNewlineElement
The nobr HTML element.
using AngleSharp.Html;
namespace AngleSharp.Dom.Html
{
internal sealed class HtmlNoNewlineElement : HtmlElement
{
public HtmlNoNewlineElement(Document owner)
: base(owner, Tags.NoBr, NodeFlags.HtmlFormatting)
{
}
}
}