summaryrefslogtreecommitdiffstats
path: root/layout/reftests/scoped-style/scoped-style-006.html
blob: 9789c510ebed7298ebe36540c4c0ed4070c56cee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<body>
  <style>
    p { color: blue }
  </style>
  <p>First</p>
  <p id=a>
    <style scoped>
      #a { color: green }
    </style>
    Second
  </p>
  <p>Third</p>
</body>