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