| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html> |
| 2 <script> |
| 3 if (window.testRunner) |
| 4 testRunner.dumpAsTextWithPixelResults(); |
| 5 </script> |
| 6 |
| 7 <style> |
| 8 /* Make decorations bigger so they are easier to see */ |
| 9 body { |
| 10 font-size: 15px; |
| 11 } |
| 12 body > div { |
| 13 margin-bottom: 15px; |
| 14 } |
| 15 </style> |
| 16 |
| 17 <div> |
| 18 <a href="http://wflwjflwef.com">Unvisited link: Solid blue underline, blue tex
t.</a> |
| 19 </div> |
| 20 |
| 21 <div> |
| 22 <a href="">Visited link: Solid purple underline, purple text.</a> |
| 23 </div> |
| 24 |
| 25 <div style="text-decoration: underline wavy green;"> |
| 26 <a href="">Custom visited link: Green wavy underline, purple solid underline o
n top, purple text. </a> |
| 27 </div> |
| 28 |
| 29 <div> |
| 30 <a href="" style="text-decoration: overline wavy;">Custom visited link: Purple
solid underline, purple wavy overline, purple text.</a> |
| 31 </div> |
| 32 |
| 33 <div> |
| 34 <a href="" style="text-decoration: underline wavy;">Custom visited link: Purpl
e wavy underline, purple text.</a> |
| 35 </div> |
| 36 |
| 37 <div style="text-decoration: underline wavy;"> |
| 38 <a href="" style="color: green;">Custom visited link: Green wavy underline, gr
een solid underline on top, green text.</a> |
| 39 </div> |
| 40 |
| 41 <div style="color: green;"> |
| 42 <a href="" style="text-decoration: underline wavy;">Custom visited link: Purpl
e wavy underline, purple text.</a> |
| 43 </div> |
| 44 |
| 45 <div style="text-decoration: overline wavy;" > |
| 46 <a href="">Custom visited link: Purple solid underline, purple wavy overline,
purple text.</a> |
| 47 </div> |
| OLD | NEW |