gecko-dev/layout/reftests/bugs/1379696.html
Emilio Cobos Álvarez b141be45cd Bug 1379696: Reftest. r=bholley
MozReview-Commit-ID: 2F4wlganOT

--HG--
extra : rebase_source : 9f03288f6b461034e84338819612a74fade4eade
2017-07-11 05:37:19 +02:00

15 lines
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>