HTMLNoElement
Represents a no* HTML element (noembed, noscript, noframes).
namespace AngleSharp.DOM.Html
{
internal sealed class HTMLNoElement : HTMLElement
{
internal const string NoEmbedTag = "noembed";
internal const string NoScriptTag = "noscript";
internal const string NoFramesTag = "noframes";
protected internal override bool IsSpecial => true;
internal HTMLNoElement()
{
_name = "noscript";
}
}
}