HtmlAppletElement
Represents the HTML applet element.
using AngleSharp.Attributes;
using AngleSharp.Html;
namespace AngleSharp.Dom.Html
{
[DomHistorical]
internal sealed class HtmlAppletElement : HtmlElement
{
public HtmlAppletElement(Document owner)
: base(owner, Tags.Applet, NodeFlags.Special | NodeFlags.Scoped)
{
}
}
}