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