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

Side by Side Diff: LayoutTests/animations/visited-link-color-animation-expected.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 test Created 5 years, 4 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 <!DOCTYPE html>
2 <style>
3 a {
4 border: solid;
5 outline: solid;
6
7 background-color: rgba(0, 128, 0, 0.5);
8 border-color: green;
9 color: green;
10 fill: rgba(0, 128, 0, 0.5);
11 outline-color: green;
12 stroke: green;
13 text-decoration-color: green;
14 }
15 </style>
16
17 <a id="visited" href="">
18 This should be completely green.
19 <svg width="14" height="14">
20 <rect x="2" y="2" width="10" height="10" stroke-width="4"></rect>
21 </svg>
22 </a>
23 <br>
24 <br>
25 <a id="unvisited" href="#">
26 This should also be completely green.
27 <svg width="14" height="14">
28 <rect x="2" y="2" width="10" height="10" stroke-width="4"></rect>
29 </svg>
30 </a>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698