1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-08-16 18:01:37 +00:00

First commit

This commit is contained in:
Frédéric Guillot 2017-11-19 21:10:04 -08:00
commit 8ffb773f43
2121 changed files with 1118910 additions and 0 deletions

View file

@ -0,0 +1 @@
address

View file

@ -0,0 +1 @@
*

View file

@ -0,0 +1 @@
p[title]

View file

@ -0,0 +1 @@
address[title="foo"]

View file

@ -0,0 +1 @@
[ title ~= foo ]

View file

@ -0,0 +1 @@
[title~="hello world"]

View file

@ -0,0 +1 @@
[lang|="en"]

View file

@ -0,0 +1 @@
[title^="foo"]

View file

@ -0,0 +1 @@
[title$="bar"]

View file

@ -0,0 +1 @@
[title*="bar"]

View file

@ -0,0 +1 @@
.t1:not(.t2)

View file

@ -0,0 +1 @@
div:not(.t1)

View file

@ -0,0 +1 @@
#foo

View file

@ -0,0 +1 @@
li:nth-child(odd)

View file

@ -0,0 +1 @@
li:nth-child(even)

View file

@ -0,0 +1 @@
li:nth-child(-n+2)

View file

@ -0,0 +1 @@
li:nth-child(3n+1)

View file

@ -0,0 +1 @@
li:nth-last-child(odd)

View file

@ -0,0 +1 @@
li:nth-last-child(even)

View file

@ -0,0 +1 @@
li:nth-last-child(-n+2)

View file

@ -0,0 +1 @@
li:nth-last-child(3n+1)

View file

@ -0,0 +1 @@
span:first-child

View file

@ -0,0 +1 @@
span:last-child

View file

@ -0,0 +1 @@
li#t1

View file

@ -0,0 +1 @@
p:nth-of-type(2)

View file

@ -0,0 +1 @@
p:nth-last-of-type(2)

View file

@ -0,0 +1 @@
p:last-of-type

View file

@ -0,0 +1 @@
p:first-of-type

View file

@ -0,0 +1 @@
p:only-child

View file

@ -0,0 +1 @@
p:only-of-type

View file

@ -0,0 +1 @@
:empty

View file

@ -0,0 +1 @@
div p

View file

@ -0,0 +1 @@
div table p

View file

@ -0,0 +1 @@
div > p

View file

@ -0,0 +1 @@
*#t4

View file

@ -0,0 +1 @@
p ~ p

View file

@ -0,0 +1 @@
p + p

View file

@ -0,0 +1 @@
li, p

View file

@ -0,0 +1 @@
p +/*This is a comment*/ p

View file

@ -0,0 +1 @@
p:contains("that wraps")

View file

@ -0,0 +1 @@
p:containsOwn("that wraps")

View file

@ -0,0 +1 @@
:containsOwn("inner")

View file

@ -0,0 +1 @@
p:containsOwn("block")

View file

@ -0,0 +1 @@
div:has(#p1)

View file

@ -0,0 +1 @@
div:has(:containsOwn("2"))

View file

@ -0,0 +1 @@
.t1

View file

@ -0,0 +1 @@
body :has(:containsOwn("2"))

View file

@ -0,0 +1 @@
body :haschild(:containsOwn("2"))

View file

@ -0,0 +1 @@
p:matches([\d])

View file

@ -0,0 +1 @@
p:matches([a-z])

View file

@ -0,0 +1 @@
p:matches([a-zA-Z])

View file

@ -0,0 +1 @@
p:matches([^\d])

View file

@ -0,0 +1 @@
p:matches(^(0|a))

View file

@ -0,0 +1 @@
p:matches(^\d+$)

View file

@ -0,0 +1 @@
p:not(:matches(^\d+$))

View file

@ -0,0 +1 @@
div :matchesOwn(^\d+$)

View file

@ -0,0 +1 @@
p.t1

View file

@ -0,0 +1 @@
[href#=(fina)]:not([href#=(\/\/[^\/]+untrusted)])

View file

@ -0,0 +1 @@
[href#=(^https:\/\/[^\/]*\/?news)]

View file

@ -0,0 +1 @@
div.teST

View file

@ -0,0 +1 @@
.t1.fail

View file

@ -0,0 +1 @@
p.t1.t2

15
vendor/github.com/andybalholm/cascadia/fuzz/fuzz.go generated vendored Normal file
View file

@ -0,0 +1,15 @@
package fuzz
import "github.com/andybalholm/cascadia"
// Fuzz is the entrypoint used by the go-fuzz framework
func Fuzz(data []byte) int {
sel, err := cascadia.Compile(string(data))
if err != nil {
if sel != nil {
panic("sel != nil on error")
}
return 0
}
return 1
}