blob: 0f7d543741d1582287d296b795f46e441437c3cf [file] [log] [blame]
bdakin0b5dc492006-06-27 17:56:09 +00001<html>
2<head>
3<title>CSS3 media query test: Device-pixel ratio query. Using style element, @media css rule.</title>
4<style type="text/css">
5@media screen and (-webkit-max-device-pixel-ratio: 1.5) {
6 p { color:green; }
7}
8
9</style>
10</head>
11
12<body>
13<p>This text should be green if the resolution scaling factor is 1.5 or smaller. Otherwise, it should be black.</p>
14</body>
15</html>