HTMLFrameElement
namespace AngleSharp.DOM.Html
{
public class HTMLFrameElement : HTMLElement
{
public const string Tag = "frame";
protected internal override bool IsSpecial => true;
public HTMLFrameElement()
{
base.NodeName = "frame";
}
}
}