Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / media / media-query-invalid-value.html
blobb3077f284ac29b2efcf2f4eb10445cf5e8ee4f67
1 <head>
2 <style type="text/css">
3 /* Valid media query expression, background-color must be green. */
4 @media (min-width: 100px) {
5 div { background-color: green; }
8 /* Invalid media query expression, width media feature accepts length
9 or number value. Media query should not match and div should not be blue. */
10 @media (min-width: blah) {
11 div { background-color: blue; }
13 </style>
14 </head>
15 <body>
16 <div style="width: 200px; height: 200px;"\>
17 </body>