summaryrefslogtreecommitdiffstats
path: root/layout/reftests/scoped-style/scoped-style-important-003.html
blob: 410867d491e0d872170cceb195300fa97ee13ce1 (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>
    p { color: green !important }
  </style>
</body>