blob: 065aec519e5d30238cf6c69f5f515d0914974b87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!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>
|