Index: LayoutTests/animations/interpolation/background-position-interpolation.html |
diff --git a/LayoutTests/animations/interpolation/background-position-interpolation.html b/LayoutTests/animations/interpolation/background-position-interpolation.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..70799ec6c08ddf178a6cec3a17052e4958f3894c |
--- /dev/null |
+++ b/LayoutTests/animations/interpolation/background-position-interpolation.html |
@@ -0,0 +1,33 @@ |
+<!DOCTYPE html> |
+<meta charset="UTF-8"> |
+<style> |
+.target { |
+ width: 120px; |
+ height: 120px; |
+ display: inline-block; |
+ border: 2px solid black; |
+ background-repeat: no-repeat; |
+ background-image: radial-gradient(circle 20px at 20px 20px, red 0px, red 18px, transparent 20px), radial-gradient(circle 20px at 20px 20px, yellow 0px, yellow 18px, transparent 20px), radial-gradient(circle 20px at 20px 20px, lime 0px, lime 18px, transparent 20px), radial-gradient(circle 20px at 20px 20px, blue 0px, blue 18px, transparent 20px); |
Steve Block
2013/10/08 23:21:49
Does each of the radial-gradient()s need to be so
alancutter (OOO until 2018)
2013/10/09 07:20:55
Simplified the syntax a little and put them on ind
|
+} |
+.replica { |
+ margin-right: 10px; |
+} |
+</style> |
+<body> |
+<script src="resources/interpolation-test.js"></script> |
+<script> |
+assertInterpolation({ |
+ property: 'background-position', |
+ from: '0px 0px, 80px 0px', |
+ to: '40px 40px, 80px 80px, 0px 80px' |
Steve Block
2013/10/08 23:21:49
It looks like you have 4 backgrounds and test anim
alancutter (OOO until 2018)
2013/10/09 07:20:55
It's actually testing from 2 positions to 3 positi
Steve Block
2013/10/09 23:19:05
Sorry, that was a typo. I meant 2 to 3.
|
+}, [ |
+ {at: -0.25, is: '-10px -10px, 80px -20px, 0px -20px, 90px -10px'}, |
+ {at: 0, is: '0px 0px, 80px 0px, 0px 0px, 80px 0px'}, |
+ {at: 0.25, is: '10px 10px, 80px 20px, 0px 20px, 70px 10px'}, |
+ {at: 0.5, is: '20px 20px, 80px 40px, 0px 40px, 60px 20px'}, |
+ {at: 0.75, is: '30px 30px, 80px 60px, 0px 60px, 50px 30px'}, |
+ {at: 1, is: '40px 40px, 80px 80px, 0px 80px, 40px 40px'}, |
+ {at: 1.25, is: '50px 50px, 80px 100px, 0px 100px, 30px 50px'}, |
Steve Block
2013/10/08 23:21:49
It might not be 'correct' style, but this would be
alancutter (OOO until 2018)
2013/10/09 07:20:55
Done.
|
+]); |
+</script> |
+</body> |