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