func github.com/andybalholm/cascadia.hasDescendantMatch

3 uses

	github.com/andybalholm/cascadia (current package)
		selector.go#L373: 		return hasDescendantMatch(n, s.match)
		selector.go#L395: func hasDescendantMatch(n *html.Node, a Matcher) bool {
		selector.go#L397: 		if a.Match(c) || (c.Type == html.ElementNode && hasDescendantMatch(c, a)) {