HtmlRbElement
The rb HTML element.
using AngleSharp.Html;
namespace AngleSharp.Dom.Html
{
internal sealed class HtmlRbElement : HtmlElement
{
public HtmlRbElement(Document owner, string prefix = null)
: base(owner, TagNames.Rb, prefix, NodeFlags.ImplicitelyClosed | NodeFlags.ImpliedEnd)
{
}
}
}