HTMLTableSectionElement
Represents the object for HTML table section (thead / tbody / tfoot) elements.
namespace AngleSharp.DOM.Html
{
public sealed class HTMLTableSectionElement : HTMLElement
{
internal const string HeadTag = "thead";
internal const string BodyTag = "tbody";
internal const string FootTag = "tfoot";
protected internal override bool IsSpecial => true;
internal HTMLTableSectionElement()
{
_name = "tbody";
}
}
}