summaryrefslogtreecommitdiff
path: root/testsuite/css/parser/not.css
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/css/parser/not.css')
-rw-r--r--testsuite/css/parser/not.css80
1 files changed, 80 insertions, 0 deletions
diff --git a/testsuite/css/parser/not.css b/testsuite/css/parser/not.css
new file mode 100644
index 0000000000..59da972028
--- /dev/null
+++ b/testsuite/css/parser/not.css
@@ -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;
+}
+