[Release] Webkit-EFL Ver. 2.0_beta_118996_0.6.22
[framework/web/webkit-efl.git] / LayoutTests / fast / media / mq-transition.html
1 <html>
2 <head>
3 <title>CSS3 media query test: media query testing transition feature.</title>
4 <link rel="help" href="http://www.webkit.org/specs/MediaQueriesExtensions.html" />
5 <style type="text/css">
6 @media (-webkit-transition) {
7 #a { color: green }
8 }
9 @media (-webkit-transition: 1) {
10 #b { color: green }
11 }
12 #c { color: green; }
13 @media (-webkit-transition: 0) {
14 #c { color: red }
15 }</style>
16 </head>
17 <body>
18   <p id="a">This text should be green if running in a build of WebKit with transitions.</p>
19   <p id="b">This text should be green if running in a build of WebKit with transitions.</p>
20   <p id="c">This text should be green if running in a build of WebKit with transitions.</p>
21 </body>
22 </html>