Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / media / mq-compound-query-05.html
blob376e7e3b78be3cb18e53cd2ef1326b892d64b505
1 <html>
2 <head>
3 <title>CSS3 media query test: Compound media query, absolute values (screen and (max-width: 800px) and (max-height:600px)). Using style element, @media css rule.</title>
4 <link rel="help" href="http://www.w3.org/TR/css3-mediaqueries/#width" />
6 <style type="text/css">
7 @media screen and (max-width: 800px) and (max-height:600px){
8 p { color: green }
10 </style>
11 </head>
12 <body>
13 <p> This text should be green if viewport is at most 800px x 600px.</p>
14 </body>
15 </html>