summaryrefslogtreecommitdiffstats
path: root/layout/reftests/scoped-style/scoped-style-important-004.html
blob: 546a8748c130faa5db0ef700b3f510c5897bc64f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<body>
  <p>First</p>
  <p>
    <style scoped>
      p { color: red !important }
    </style>
    Second
  </p>
  <p>Third</p>
  <style scoped>
    p { color: green !important }
  </style>
</body>