HTMLDirectoryElement
Represents the HTML dir element.
namespace AngleSharp.DOM.Html
{
[DOM("HTMLDirectoryElement")]
public sealed class HTMLDirectoryElement : HTMLElement
{
protected internal override bool IsSpecial => true;
internal HTMLDirectoryElement()
{
_name = "dir";
}
}
}