Added
-
This version adds initial support for the
:haspseudo-selector. It is a great addition that enables finding elements containing matching children.Examples for selectors:
"div:has(h1)""div:has(h1, p, span)""div:has(p.foo)""div:has(img[src='https://example.com'])""tr:has(*:fl-contains('TEST'))"
Note that combinators like
">"...