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

Side by Side Diff: LayoutTests/animations/visited-link-color-animation.html

Issue 1312983003: Apply CSS Animations on color properties to visited and unvisited link computed styles (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix compile Created 5 years, 3 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/animations/visited-link-color-animation-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 <!DOCTYPE html>
2 <style>
3 @keyframes test {
4 from {
5 background-color: rgba(0, 128, 0, 0.5);
6 border-color: green;
7 color: green;
8 fill: rgba(0, 128, 0, 0.5);
9 outline-color: green;
10 stroke: green;
11 text-decoration-color: green;
12 }
13 }
14 a {
15 animation-name: test;
16 animation-delay: 1e10s;
17 animation-duration: 1s;
18 animation-fill-mode: both;
19 border: solid;
20 outline: solid;
21
22 background-color: rgba(128, 0, 0, 0.5);
23 border-color: red;
24 color: red;
25 fill: rgba(128, 0, 0, 0.5);
26 outline-color: red;
27 stroke: red;
28 text-decoration-color: red;
29 }
30 </style>
31
32 <a id="visited" href="">
33 This should be completely green.
34 <svg width="14" height="14">
35 <rect x="2" y="2" width="10" height="10" stroke-width="4"></rect>
36 </svg>
37 </a>
38 <br>
39 <br>
40 <a id="unvisited" href="#">
41 This should also be completely green.
42 <svg width="14" height="14">
43 <rect x="2" y="2" width="10" height="10" stroke-width="4"></rect>
44 </svg>
45 </a>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/animations/visited-link-color-animation-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698