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