Index: LayoutTests/animations/interpolation/text-shadow-interpolation.html |
diff --git a/LayoutTests/animations/interpolation/text-shadow-interpolation.html b/LayoutTests/animations/interpolation/text-shadow-interpolation.html |
index 4fe75c549e300464fe620e38e0e9a33d0e2eea9f..80ad63766d3cb5119f111d7685e9dda165618617 100644 |
--- a/LayoutTests/animations/interpolation/text-shadow-interpolation.html |
+++ b/LayoutTests/animations/interpolation/text-shadow-interpolation.html |
@@ -1,12 +1,16 @@ |
<!DOCTYPE html> |
<meta charset="UTF-8"> |
<style> |
+.parent { |
+ text-shadow: 30px 10px 30px orange; |
+} |
.target { |
display: inline-block; |
font-size: 60pt; |
margin-right: 20px; |
margin-bottom: 30px; |
color: green; |
+ text-shadow: 10px 30px 10px orange; |
} |
.expected { |
margin-right: 40px; |
@@ -18,6 +22,58 @@ |
<script> |
assertInterpolation({ |
property: 'text-shadow', |
+ from: '', |
+ to: '20px 20px 20px green', |
+}, [ |
+ {at: -0.3, is: 'rgb(255, 176, 0) 7px 33px 7px'}, |
+ {at: 0, is: 'rgb(255, 165, 0) 10px 30px 10px'}, |
+ {at: 0.3, is: 'rgb(179, 154, 0) 13px 27px 13px'}, |
+ {at: 0.6, is: 'rgb(102, 143, 0) 16px 24px 16px'}, |
+ {at: 1, is: 'rgb(0, 128, 0) 20px 20px 20px'}, |
+ {at: 1.5, is: 'rgb(0, 110, 0) 25px 15px 25px'}, |
+]); |
+ |
+assertInterpolation({ |
+ property: 'text-shadow', |
+ from: 'initial', |
+ to: '20px 20px 20px green', |
+}, [ |
+ {at: -0.3, is: 'rgba(0, 0, 0, 0) -6px -6px 0px'}, |
+ {at: 0, is: 'none'}, |
+ {at: 0.3, is: 'rgba(0, 125, 0, 0.3) 6px 6px 6px'}, |
+ {at: 0.6, is: 'rgba(0, 128, 0, 0.6) 12px 12px 12px'}, |
+ {at: 1, is: 'rgb(0, 128, 0) 20px 20px 20px'}, |
+ {at: 1.5, is: 'rgb(0, 192, 0) 30px 30px 30px'}, |
+]); |
+ |
+assertInterpolation({ |
+ property: 'text-shadow', |
+ from: 'inherit', |
+ to: '20px 20px 20px green', |
+}, [ |
+ {at: -0.3, is: 'rgb(255, 176, 0) 33px 7px 33px'}, |
+ {at: 0, is: 'rgb(255, 165, 0) 30px 10px 30px'}, |
+ {at: 0.3, is: 'rgb(179, 154, 0) 27px 13px 27px'}, |
+ {at: 0.6, is: 'rgb(102, 143, 0) 24px 16px 24px'}, |
+ {at: 1, is: 'rgb(0, 128, 0) 20px 20px 20px'}, |
+ {at: 1.5, is: 'rgb(0, 110, 0) 15px 25px 15px'}, |
+]); |
+ |
+assertInterpolation({ |
+ property: 'text-shadow', |
+ from: 'unset', |
+ to: '20px 20px 20px green', |
+}, [ |
+ {at: -0.3, is: 'rgb(255, 176, 0) 33px 7px 33px'}, |
+ {at: 0, is: 'rgb(255, 165, 0) 30px 10px 30px'}, |
+ {at: 0.3, is: 'rgb(179, 154, 0) 27px 13px 27px'}, |
+ {at: 0.6, is: 'rgb(102, 143, 0) 24px 16px 24px'}, |
+ {at: 1, is: 'rgb(0, 128, 0) 20px 20px 20px'}, |
+ {at: 1.5, is: 'rgb(0, 110, 0) 15px 25px 15px'}, |
+]); |
+ |
+assertInterpolation({ |
+ property: 'text-shadow', |
from: '15px 10px 5px black', |
to: '-15px -10px 25px orange' |
}, [ |