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