summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-mediaqueries/system-metrics-1.html
blob: b36851a398ba82d8069f2851bf47a4714e69b8ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE HTML>
<title>test for system metric media queries</title>
<style>

p { color: red; }

/* Exactly one of the next two should apply */

@media all and (-moz-scrollbar-end-backward) {
  p:-moz-system-metric(scrollbar-end-backward) { color: green; }
}

@media not all and (-moz-scrollbar-end-backward) {
  p:not(:-moz-system-metric(scrollbar-end-backward)) { color: green; }
}

/* Neither of these should apply */

@media not all and (-moz-scrollbar-end-backward) {
  p:-moz-system-metric(scrollbar-end-backward) { color: red; }
}

@media all and (-moz-scrollbar-end-backward) {
  p:not(:-moz-system-metric(scrollbar-end-backward)) { color: red; }
}

</style>
<p>This text should be green.</p>