OLD | NEW |
1 <style> | 1 <style> |
2 div { | 2 div { |
3 height: 72px; | 3 height: 72px; |
4 font-family: ahem; | 4 font-family: Ahem; |
5 font-size: 24px; | 5 font-size: 24px; |
6 } | 6 } |
7 </style> | 7 </style> |
8 <p> | 8 <p> |
9 Test that the intensity of text-shadow does not depend on the transparency | 9 Test that the intensity of text-shadow does not depend on the transparency |
10 of the text fill color. | 10 of the text fill color. |
11 </p> | 11 </p> |
12 <div style="text-shadow: green 0 36px 0;"> | 12 <div style="text-shadow: green 0 36px 0;"> |
13 A | 13 A |
14 <span style="color: transparent;">A</span> | 14 <span style="color: transparent;">A</span> |
(...skipping 11 matching lines...) Expand all Loading... |
26 There should be three identical soft-edged green squares on the line above. | 26 There should be three identical soft-edged green squares on the line above. |
27 </p> | 27 </p> |
28 <div style="text-shadow: green 0 36px 0; -webkit-text-stroke: 5px blue;"> | 28 <div style="text-shadow: green 0 36px 0; -webkit-text-stroke: 5px blue;"> |
29 A | 29 A |
30 <span style="color: transparent;">A</span> | 30 <span style="color: transparent;">A</span> |
31 <span style="color: rgba(0, 0, 0, 0.1);">A</span> | 31 <span style="color: rgba(0, 0, 0, 0.1);">A</span> |
32 </div> | 32 </div> |
33 <p> | 33 <p> |
34 There should be three identical green squares on the line above. | 34 There should be three identical green squares on the line above. |
35 </p> | 35 </p> |
OLD | NEW |