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

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

Issue 135903006: Remove the -webkit-transition media feature (PrefixedTransitionMediaFeature) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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
« no previous file with comments | « no previous file | LayoutTests/fast/media/mq-transition-expected.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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 trans itions.</p>
19 <p id="b">This text should be green if running in a build of WebKit with trans itions.</p>
20 <p id="c">This text should be green if running in a build of WebKit with trans itions.</p>
21 </body>
22 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/media/mq-transition-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698