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