Index: polymer_0.5.0/bower_components/web-animations-js/test/blink/interpolation/text-shadow-interpolation.html |
diff --git a/polymer_0.5.0/bower_components/web-animations-js/test/blink/interpolation/text-shadow-interpolation.html b/polymer_0.5.0/bower_components/web-animations-js/test/blink/interpolation/text-shadow-interpolation.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..09c659b8e5112eaa142e8b2b2c5d0116e3a523eb |
--- /dev/null |
+++ b/polymer_0.5.0/bower_components/web-animations-js/test/blink/interpolation/text-shadow-interpolation.html |
@@ -0,0 +1,33 @@ |
+<!DOCTYPE html> |
+<meta charset="UTF-8"> |
+<style> |
+.target { |
+ display: inline-block; |
+ font-size: 60pt; |
+ margin-right: 20px; |
+ margin-bottom: 30px; |
+} |
+.replica { |
+ margin-right: 40px; |
+} |
+</style> |
+<body> |
+<template id="target-template">T</template> |
+<script src="../testharness/testharness.js"></script> |
+<script src="../testharness/testharnessreport.js"></script> |
+<script src="resources/interpolation-test.js"></script> |
+<script> |
+assertInterpolation({ |
+ property: 'text-shadow', |
+ from: '15px 10px 5px black', |
+ to: '-15px -10px 25px orange' |
+}, [ |
+ {at: -0.3, is: '24px 16px 0px black'}, |
+ {at: 0, is: '15px 10px 5px black'}, |
+ {at: 0.3, is: '6px 4px 11px rgb(77, 50, 0)'}, |
+ {at: 0.6, is: '-3px -2px 17px rgb(153, 99, 0)'}, |
+ {at: 1, is: '-15px -10px 25px orange'}, |
+ {at: 1.5, is: '-30px -20px 35px rgb(255, 248, 0)'}, |
+]); |
+</script> |
+</body> |