Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / media / mq-transform-02.html
blobcb253550fc74b400024606cea821667e6e4639b4
1 <html>
2 <head>
3 <title>CSS3 media query test: media query testing transform 3d feature.</title>
4 <link rel="help" href="http://www.webkit.org/specs/MediaQueriesExtensions.html" />
5 <style type="text/css">
6 p { color: green }
7 @media (-webkit-transform-3d) {
8 p { color: red }
10 </style>
11 </head>
12 <body>
13 <p>This text should be green. If running in a build of WebKit with 3d transforms, it will appear red (and this should not happen while 3d is not supported)</p>
14 </body>
15 </html>