HtmlNoFramesElement
Represents a noframes HTML element.
using AngleSharp.Html;
namespace AngleSharp.Dom.Html
{
internal sealed class HtmlNoFramesElement : HtmlElement
{
public HtmlNoFramesElement(Document owner, string prefix = null)
: base(owner, TagNames.NoFrames, prefix, NodeFlags.Special | NodeFlags.LiteralText)
{
}
}
}