Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / animations / visited-link-color-animation-expected.html
blob331ad8d529ab0140fbc6e68ef89bbe00a325cdc1
1 <!DOCTYPE html>
2 <style>
3 a {
4 border: solid;
5 outline: solid;
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;
15 </style>
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>