HtmlDirectoryElement
Represents the HTML dir element.
This element is obsolete since HTML 4.01.
using AngleSharp.Attributes;
using AngleSharp.Html;
namespace AngleSharp.Dom.Html
{
[DomHistorical]
internal sealed class HtmlDirectoryElement : HtmlElement
{
public HtmlDirectoryElement(Document owner)
: base(owner, Tags.Dir, NodeFlags.Special)
{
}
}
}