ISelector
Represents a CSS selector for matching elements.
More information: http://dev.w3.org/csswg/selectors4/
using AngleSharp.Dom;
namespace AngleSharp.Css.Dom
{
public interface ISelector
{
string Text { get; }
Priority Specificity { get; }
bool Match(IElement element, IElement scope);
void Accept(ISelectorVisitor visitor);
}
}