mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 19:00:08 +00:00
testsuite: Add a bunch of parsing tests for :not()
This commit is contained in:
parent
965da578c4
commit
06952d807a
@ -326,6 +326,8 @@ test_data = \
|
||||
linear-gradient.ref.css \
|
||||
no-semicolon.css \
|
||||
no-semicolon.ref.css \
|
||||
not.css \
|
||||
not.ref.css \
|
||||
nth-child.css \
|
||||
nth-child.ref.css \
|
||||
property-name-errors.css \
|
||||
|
80
testsuite/css/parser/not.css
Normal file
80
testsuite/css/parser/not.css
Normal file
@ -0,0 +1,80 @@
|
||||
:not(*) {
|
||||
color: tomato;
|
||||
}
|
||||
|
||||
:not(GtkButton) {
|
||||
color: tomato;
|
||||
}
|
||||
|
||||
:not(:hover) {
|
||||
color: tomato;
|
||||
}
|
||||
|
||||
:not(.yourmom) {
|
||||
color: tomato;
|
||||
}
|
||||
|
||||
:not(#yourmom) {
|
||||
color: tomato;
|
||||
}
|
||||
|
||||
:not( *) {
|
||||
color: tomato;
|
||||
}
|
||||
|
||||
:not( GtkButton) {
|
||||
color: tomato;
|
||||
}
|
||||
|
||||
:not( :hover) {
|
||||
color: tomato;
|
||||
}
|
||||
|
||||
:not( .yourmom) {
|
||||
color: tomato;
|
||||
}
|
||||
|
||||
:not( #yourmom) {
|
||||
color: tomato;
|
||||
}
|
||||
|
||||
:not(* ) {
|
||||
color: tomato;
|
||||
}
|
||||
|
||||
:not(GtkButton ) {
|
||||
color: tomato;
|
||||
}
|
||||
|
||||
:not(:hover ) {
|
||||
color: tomato;
|
||||
}
|
||||
|
||||
:not(.yourmom ) {
|
||||
color: tomato;
|
||||
}
|
||||
|
||||
:not(#yourmom ) {
|
||||
color: tomato;
|
||||
}
|
||||
|
||||
:not( * ) {
|
||||
color: tomato;
|
||||
}
|
||||
|
||||
:not( GtkButton ) {
|
||||
color: tomato;
|
||||
}
|
||||
|
||||
:not( :hover ) {
|
||||
color: tomato;
|
||||
}
|
||||
|
||||
:not( .yourmom ) {
|
||||
color: tomato;
|
||||
}
|
||||
|
||||
:not( #yourmom ) {
|
||||
color: tomato;
|
||||
}
|
||||
|
80
testsuite/css/parser/not.ref.css
Normal file
80
testsuite/css/parser/not.ref.css
Normal file
@ -0,0 +1,80 @@
|
||||
:not(*) {
|
||||
color: rgb(255,99,71);
|
||||
}
|
||||
|
||||
:not(GtkButton) {
|
||||
color: rgb(255,99,71);
|
||||
}
|
||||
|
||||
:not(:hover) {
|
||||
color: rgb(255,99,71);
|
||||
}
|
||||
|
||||
:not(.yourmom) {
|
||||
color: rgb(255,99,71);
|
||||
}
|
||||
|
||||
:not(#yourmom) {
|
||||
color: rgb(255,99,71);
|
||||
}
|
||||
|
||||
:not(*) {
|
||||
color: rgb(255,99,71);
|
||||
}
|
||||
|
||||
:not(GtkButton) {
|
||||
color: rgb(255,99,71);
|
||||
}
|
||||
|
||||
:not(:hover) {
|
||||
color: rgb(255,99,71);
|
||||
}
|
||||
|
||||
:not(.yourmom) {
|
||||
color: rgb(255,99,71);
|
||||
}
|
||||
|
||||
:not(#yourmom) {
|
||||
color: rgb(255,99,71);
|
||||
}
|
||||
|
||||
:not(*) {
|
||||
color: rgb(255,99,71);
|
||||
}
|
||||
|
||||
:not(GtkButton) {
|
||||
color: rgb(255,99,71);
|
||||
}
|
||||
|
||||
:not(:hover) {
|
||||
color: rgb(255,99,71);
|
||||
}
|
||||
|
||||
:not(.yourmom) {
|
||||
color: rgb(255,99,71);
|
||||
}
|
||||
|
||||
:not(#yourmom) {
|
||||
color: rgb(255,99,71);
|
||||
}
|
||||
|
||||
:not(*) {
|
||||
color: rgb(255,99,71);
|
||||
}
|
||||
|
||||
:not(GtkButton) {
|
||||
color: rgb(255,99,71);
|
||||
}
|
||||
|
||||
:not(:hover) {
|
||||
color: rgb(255,99,71);
|
||||
}
|
||||
|
||||
:not(.yourmom) {
|
||||
color: rgb(255,99,71);
|
||||
}
|
||||
|
||||
:not(#yourmom) {
|
||||
color: rgb(255,99,71);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user