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