gecko-dev/layout/reftests/bugs/1379696.html

15 строки
248 B
HTML

<!DOCTYPE html>
<style>
.bar:before {
content:'SHOULD NOT BE ORANGE'
}
.foo:before {
content:'SHOULD BE ORANGE'
}
:-moz-any(.foo):before {
background-color: orange;
}
</style>
<div class="bar"></div>
<div class="foo"></div>