summaryrefslogtreecommitdiffstats
path: root/layout/reftests/scoped-style/scoped-style-important-001.html
blob: 1fd9f202e14503dc333405026aad5aab1058c5ba (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 }
    </style>
    Second
  </p>
  <p>Third</p>
  <style>
    p { color: blue !important }
  </style>
</body>