HTMLEmbedElement
Represents the embed element.
namespace AngleSharp.DOM.Html
{
public class HTMLEmbedElement : HTMLElement
{
public const string Tag = "embed";
protected internal override bool IsSpecial => true;
public HTMLEmbedElement()
{
_name = "embed";
}
}
}