HtmlSmallElement
The small HTML element.
using AngleSharp.Html;
namespace AngleSharp.Dom.Html
{
internal sealed class HtmlSmallElement : HtmlElement
{
public HtmlSmallElement(Document owner)
: base(owner, Tags.Small, NodeFlags.HtmlFormatting)
{
}
}
}