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