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