OLD | NEW |
| (Empty) |
1 <html> | |
2 <head> | |
3 <title>CSS3 media query test: media query testing animation feature.</title> | |
4 <link rel="help" href="http://www.webkit.org/specs/MediaQueriesExtensions.html"
/> | |
5 <style type="text/css"> | |
6 @media (-webkit-animation) { | |
7 #a { color: green } | |
8 } | |
9 @media (-webkit-animation: 1) { | |
10 #b { color: green } | |
11 } | |
12 #c { color: green; } | |
13 @media (-webkit-animation: 0) { | |
14 #c { color: red } | |
15 } | |
16 </style> | |
17 </head> | |
18 <body> | |
19 <p id="a">This text should be green if running in a build of WebKit with animati
ons.</p> | |
20 <p id="b">This text should be green if running in a build of WebKit with animati
ons.</p> | |
21 <p id="c">This text should be green if running in a build of WebKit with animati
ons.</p> | |
22 </body> | |
23 </html> | |
OLD | NEW |