blob: efb74238ecec3ee22fc63e93c982ef168b76a6a1 (
plain)
1
2
3
4
5
|
/* Source: http://www.w3.org/Style/CSS/Test/CSS3/Selectors/current/html/tests/css3-modsel-169a.html */
span::after { background-color: red; content: 'FAILED'; }
span:after { background-color: lime; content: 'PASSED'; }
|