summaryrefslogtreecommitdiffstats
path: root/layout/reftests/scoped-style/scoped-style-important-002.html
blob: 3e2d1526e1654df83c6b9bef129f9fb737de7a5e (plain)
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html>
<body>
  <p>First</p>
  <p style="color: red">
    <style scoped>
      p { color: blue !important }
    </style>
    Second
  </p>
  <p>Third</p>
</body>