HTMLSmallElement
The small HTML element.
using AngleSharp.Html;
namespace AngleSharp.DOM.Html
{
internal sealed class HTMLSmallElement : HTMLElement
{
internal HTMLSmallElement()
: base(Tags.Small, NodeFlags.HtmlFormatting)
{
}
}
}