| 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 <!-- Special optimization for 'simple' underlines --> |
| 18 <div style="text-decoration: underline;"> |
| 19 Solid black underline. |
| 20 </div> |
| 21 |
| 22 <div style="text-decoration: underline overline;"> |
| 23 <div style="text-decoration: underline wavy green;"> |
| 24 Solid black overline, solid black underline with wavy green underline on to
p. |
| 25 </div> |
| 26 </div> |
| 27 |
| 28 <div style="text-decoration: underline wavy green;"> |
| 29 <div> |
| 30 <div style="text-decoration: underline;"> |
| 31 Wavy green underline, solid black underline on top. |
| 32 </div> |
| 33 </div> |
| 34 </div> |
| 35 |
| 36 <div style="text-decoration: underline;"> |
| 37 <div> |
| 38 <div style="text-decoration: underline wavy green;"> |
| 39 Solid black underline, wavy green underline on top. |
| 40 </div> |
| 41 </div> |
| 42 </div> |
| 43 |
| 44 <div style="text-decoration: underline wavy red;"> |
| 45 <div style="text-decoration: underline;"> |
| 46 Wavy red underline, solid black underline on top. |
| 47 </div> |
| 48 </div> |
| 49 |
| 50 <div style="text-decoration: underline wavy red; color: blue;"> |
| 51 <div style="text-decoration: underline;"> |
| 52 Wavy red underline, solid blue underline on top, blue text. |
| 53 </div> |
| 54 </div> |
| OLD | NEW |