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, string prefix = null)
: base(owner, TagNames.Dir, prefix, NodeFlags.Special)
{
}
}
}