Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / transitions / svg-visited-link-transitions-expected.html
blob7ad931b7231b106b13cd4917384f567cd1c9a722
1 <style>
2 a {
3 text-decoration: none;
6 .target, .expected {
7 fill: rgb(128, 128, 0);
8 stroke: rgb(128, 128, 0);
10 </style>
12 Expected:<br>
13 <svg width="204" height="100">
14 <rect class="expected" x="2" y="2" stroke-width="2" width="96" height="96"/>
15 <rect class="expected" x="106" y="2" stroke-width="2" width="96" height="96"/>
16 </svg>
17 <br>
18 Actual:<br>
19 <!-- Normal paint style transition. -->
20 <a href="//unvisited.website">
21 <svg width="100" height="100">
22 <rect class="target" x="2" y="2" stroke-width="2" width="96" height="96"/>
23 </svg>
24 </a>
25 <!-- Visited link paint style transition. -->
26 <a href="">
27 <svg width="100" height="100">
28 <rect class="target" x="2" y="2" stroke-width="2" width="96" height="96"/>
29 </svg>
30 </a>