Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / media / mq-simple-query-05.html
blob6d63879c18cbb9aa9cc15bf1b710d329e8b36788
1 <html>
2 <head>
3 <title> CSS3 media query test: matches color or monochrome screens </title>
4 <link rel="help" href="http://www.w3.org/TR/css3-mediaqueries/" />
5 <style type="text/css">
6 p { color: red }
7 @media all and (color) {
8 p { color: green }
10 @media all and (monochrome) {
11 p { color: green;}
13 </style>
14 </head>
15 <body>
16 <p> This text should be green.</p>
17 </body>
18 </html>