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