Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(107)

Side by Side Diff: LayoutTests/fast/media/mq-animation.html

Issue 269053005: Remove CSS media features -webkit-transform-2d, -webkit-animation and -webkit-view-mode (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: update tests Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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>
OLDNEW
« no previous file with comments | « LayoutTests/fast/media/media-query-list-01-expected.txt ('k') | LayoutTests/fast/media/mq-animation-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698