summaryrefslogtreecommitdiffstats
path: root/layout/reftests/scoped-style/scoped-style-013.html
blob: 7b9f97f51af5d5e13ff4049a463d9828877b9774 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<body>
  <div>
    <p>First</p>
  </div>
  <div>
    <style scoped>
      div p { color: green }
    </style>
    <p>Second</p>
  </div>
</body>