diff --git a/selector/main.go b/selector/main.go
index 6dbe516..ba3581d 100644
--- a/selector/main.go
+++ b/selector/main.go
@@ -3,0 +4 @@ import (
+ "slices"
@@ -61,5 +62 @@ func Contains(selector []string, node []string) bool {
- selectorSet := make(map[string]struct{}, len(node))
- for _, s := range node {
- selectorSet[s] = struct{}{}
- }
-
+ has := true
@@ -67,2 +64,2 @@ func Contains(selector []string, node []string) bool {
- if _, exists := selectorSet[s]; !exists {
- return false
+ if !slices.Contains(node, s) {
+ has = false
@@ -71 +68 @@ func Contains(selector []string, node []string) bool {
- return true
+ return has
@@ -73,5 +69,0 @@ func Contains(selector []string, node []string) bool {
-
-// precompile selectors so you don't have to split selector on every style sheet and every selector everytime, put in a map
-// if the selector is the same as another merge them.
-// if the selector has a parent or child selector then make a css prop "Selector": "full selector". should be blank if not
-// can run the actual test in that case, just see if a part of the selector matches, can be cleaned up later
package selector
import (
"strings"
"golang.org/x/net/html"
)
// !ISSUE: Create :not and other selectors
func GetInitCSSSelectors(node *html.Node, selectors []string) []string {
if node.Type == html.ElementNode {
selectors = append(selectors, node.Data)
for _, attr := range node.Attr {
if attr.Key == "class" {
classes := strings.Split(attr.Val, " ")
for _, class := range classes {
selectors = append(selectors, "."+class)
}
} else if attr.Key == "id" {
selectors = append(selectors, "#"+attr.Val)
} else {
selectors = append(selectors, "["+attr.Key+"=\""+attr.Val+"\"]")
}
}
}
return selectors
}
func SplitSelector(s string) []string {
var result []string
var current strings.Builder
for _, char := range s {
switch char {
case '.', '#', '[', ']', ':':
if current.Len() > 0 {
if char == ']' {
current.WriteRune(char)
}
result = append(result, current.String())
current.Reset()
}
if char != ']' {
current.WriteRune(char)
}
default:
current.WriteRune(char)
}
}
if current.Len() > 0 {
result = append(result, current.String())
}
return result
}
func Contains(selector []string, node []string) bool {
selectorSet := make(map[string]struct{}, len(node))
for _, s := range node {
selectorSet[s] = struct{}{}
}
for _, s := range selector {
if _, exists := selectorSet[s]; !exists {
return false
}
}
return true
}
// precompile selectors so you don't have to split selector on every style sheet and every selector everytime, put in a map
// if the selector is the same as another merge them.
// if the selector has a parent or child selector then make a css prop "Selector": "full selector". should be blank if not
// can run the actual test in that case, just see if a part of the selector matches, can be cleaned up later