Update pseudo-class test

We have some more pseudo-classes now, and some are printed
out with their CSS name.
This commit is contained in:
Matthias Clasen
2015-12-21 13:59:24 -05:00
parent 6d86ce516d
commit 01f2d4dd0f
2 changed files with 18 additions and 2 deletions

View File

@ -18,10 +18,18 @@
color: red; color: red;
} }
:disabled {
color: red;
}
:inconsistent { :inconsistent {
color: red; color: red;
} }
:indeterminate {
color: red;
}
:focused { :focused {
color: red; color: red;
} }

View File

@ -14,11 +14,19 @@
color: rgb(255,0,0); color: rgb(255,0,0);
} }
:insensitive { :disabled {
color: rgb(255,0,0); color: rgb(255,0,0);
} }
:inconsistent { :disabled {
color: rgb(255,0,0);
}
:indeterminate {
color: rgb(255,0,0);
}
:indeterminate {
color: rgb(255,0,0); color: rgb(255,0,0);
} }