Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / media / media-feature-monochrome.html
blob62930b2ba10cae5db339cd5076011f08c7677898
1 <!DOCTYPE html>
2 <style>
3 /* Matches monochrome displays. */
4 @media not all and (monochrome: 0) { #test::before { content: "PASS"; } }
5 /* Matches non-monochrome displays. */
6 @media (monochrome: 0) { #test::after { content: "PASS"; } }
7 </style>
8 <p>You should see the word PASS below.</p>
9 <p id="test"></p>