tenfourfox/layout/reftests/css-mediaqueries/system-metrics-1.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

29 lines
700 B
HTML

<!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>