blob: b3077f284ac29b2efcf2f4eb10445cf5e8ee4f67 [file] [log] [blame]
<head>
<style type="text/css">
/* Valid media query expression, background-color must be green. */
@media (min-width: 100px) {
div { background-color: green; }
}
/* Invalid media query expression, width media feature accepts length
or number value. Media query should not match and div should not be blue. */
@media (min-width: blah) {
div { background-color: blue; }
}
</style>
</head>
<body>
<div style="width: 200px; height: 200px;"\>
</body>