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