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