summaryrefslogtreecommitdiffstats
path: root/layout/reftests/scoped-style/scoped-style-010.html
blob: d996503457f8da09c2d2f3cb41184625113a7c9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<body>
  <p>First</p>
  <p>
    <style scoped>
      p { color: red }
    </style>
    <style scoped>
      p { text-decoration: underline }
    </style>
    Second
    <style scoped>
      p { color: green }
    </style>
  </p>
  <p>Third</p>
</body>