Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/reftests/bugs/reftest.list
<!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>