summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/media/media-feature-monochrome.html
blob: 62930b2ba10cae5db339cd5076011f08c7677898 (plain)
1
2
3
4
5
6
7
8
9
<!DOCTYPE html>
<style>
/* Matches monochrome displays. */
@media not all and (monochrome: 0) { #test::before { content: "PASS"; } }
/* Matches non-monochrome displays. */
@media (monochrome: 0) { #test::after { content: "PASS"; } }
</style>
<p>You should see the word PASS below.</p>
<p id="test"></p>