-
Notifications
You must be signed in to change notification settings - Fork 125
CSS 3 Selector Test Status
TylerBrinks edited this page Mar 10, 2012
·
8 revisions
CSS Level 3 Selector Unit Test Status
Selector | Status |
---|---|
* | |
E | |
E[foo] | |
E[foo="bar"] | |
E[foo~="bar"] | |
E[foo^="bar"] | |
E[foo$="bar"] | |
E[hreflang|="en"] | |
E:root | |
E:nth-child(n) | |
E:nth-last-child(n) | |
E:nth-of-type(n) | |
E:nth-last-of-type(n) | |
E:first-child | |
E:last-child | |
E:first-of-type | |
E:last-of-type | |
E:only-child | |
E:only-of-type | |
E:empty | |
E:link E:visited |
|
E:active E:hover E:focus |
|
E:target | |
E:lang(fr) | |
E:enabled E:disabled |
|
E:checked E:indeterminate |
|
E:contains("foo") | |
E::first-line | |
E::first-letter | |
E::selection | |
E::before | |
E::after | |
E.warning | |
E#myid | |
E:not(s) | |
E F | |
E > F | |
E + F | |
E ~ F |
Passed
Failed