summaryrefslogtreecommitdiffstats
path: root/layout/reftests/scoped-style/scoped-style-document.html
blob: cb02becd645e62cda848099ffcc790559a2e1396 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<body>
  <p>First</p>
  <p>
    <style scoped>
      @-moz-document regexp("^.*scoped-style-document\\.html$") {
        p { color: blue }
      }
    </style>
    Second
  </p>
  <p>Third</p>
</body>