mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-05 16:20:10 +00:00
tests: Add a test for using the same selector multiple times
This commit is contained in:
parent
35a0fb09ac
commit
1b770caf0a
@ -263,6 +263,8 @@ EXTRA_DIST += \
|
||||
does-not-exist.css \
|
||||
does-not-exist.errors \
|
||||
does-not-exist.ref.css \
|
||||
doubled.css \
|
||||
doubled.ref.css \
|
||||
empty.css \
|
||||
enum.css \
|
||||
enum.errors \
|
||||
|
12
tests/css/parser/doubled.css
Normal file
12
tests/css/parser/doubled.css
Normal file
@ -0,0 +1,12 @@
|
||||
.class.class { color: red; }
|
||||
.class { color: red; }
|
||||
|
||||
#name#name#name { color: red; }
|
||||
#name { color: red; }
|
||||
|
||||
:focus:focus { color: red; }
|
||||
:focus { color: red; }
|
||||
|
||||
:nth-child(even):nth-child(even):nth-child(even) { color: red; }
|
||||
:nth-child(even) { color: red; }
|
||||
|
31
tests/css/parser/doubled.ref.css
Normal file
31
tests/css/parser/doubled.ref.css
Normal file
@ -0,0 +1,31 @@
|
||||
.class {
|
||||
color: rgb(255,0,0);
|
||||
}
|
||||
|
||||
:focus {
|
||||
color: rgb(255,0,0);
|
||||
}
|
||||
|
||||
:nth-child(even) {
|
||||
color: rgb(255,0,0);
|
||||
}
|
||||
|
||||
.class.class {
|
||||
color: rgb(255,0,0);
|
||||
}
|
||||
|
||||
:focus:focus {
|
||||
color: rgb(255,0,0);
|
||||
}
|
||||
|
||||
:nth-child(even):nth-child(even):nth-child(even) {
|
||||
color: rgb(255,0,0);
|
||||
}
|
||||
|
||||
#name {
|
||||
color: rgb(255,0,0);
|
||||
}
|
||||
|
||||
#name#name#name {
|
||||
color: rgb(255,0,0);
|
||||
}
|
Loading…
Reference in New Issue
Block a user