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