summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/1379696-ref.html
blob: fc47335fb40d5403da8e395ad7845bdfc81066c6 (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'
  }
  .foo:before {
    background-color: orange;
  }
</style>
<div class="bar"></div>
<div class="foo"></div>