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