HTMLAppletElement
Represents the HTML applet element.
using AngleSharp.Attributes;
using AngleSharp.Html;
namespace AngleSharp.DOM.Html
{
[DomHistorical]
internal sealed class HTMLAppletElement : HTMLElement
{
internal HTMLAppletElement()
: base(Tags.Applet, NodeFlags.Special | NodeFlags.Scoped)
{
}
}
}