summaryrefslogtreecommitdiffstats
path: root/layout/reftests/scoped-style/scoped-style-014.html
blob: 9c2fb88164e15755e9e4f8c2f13fc8b65255ea0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<body>
  <div>
    <p>First</p>
  </div>
  <blockquote>
    <style scoped>
      blockquote p { color: green }
    </style>
    <div>
      <div>
        <div>
          <p>Second</p>
        </div>
      </div>
    </div>
  </blockquote>
</body>