summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/media/mq-valueless.html
blob: 68a2ac92c2d3e0058afeadf718001a6315e211a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<html>
<head>
<title>CSS3 media query test: media query without values (screen and (color)). Using style element, @media css rule.</title>
<link rel="help" href="http://www.w3.org/TR/css3-mediaqueries/#color" />

<style type="text/css">
@media screen and (color) {
p { color: green }
}
</style>
</head>
<body>
<p> This text should be green if color display is used.</p>
</body>
</html>