Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector / console / console-log-media-query-warning.html
blob324e6e2684cc27ef28c6b8e9a6ef6aff16d96e50
1 <html>
2 <head>
3 <script src="../../http/tests/inspector/inspector-test.js"></script>
4 <script src="../../http/tests/inspector/console-test.js"></script>
5 <style>
6 @media
7 only screen and ( min-resolution: 192dpi),
8 only screen and ( min-resolution: 2dppx) {
9 /* No warning because dppx value used */
11 </style>
12 <style>
13 @media
14 only screen and ( min-resolution: 2dppx)
15 only screen and ( min-resolution: 192dpi) {
16 /* No warning because dppx value used */
18 </style>
19 <script>
20 function test()
22 InspectorTest.dumpConsoleMessages();
23 InspectorTest.completeTest();
25 </script>
26 </head>
27 <body onload="runTest()">
28 <p>
29 Tests warning on dpi values in media query (see http://crbug/336276).
30 </p>
31 </body>
32 </html>