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