Index: polymer_0.5.0/bower_components/web-animations-js/test/blink/interpolation/widows-interpolation.html |
diff --git a/polymer_0.5.0/bower_components/web-animations-js/test/blink/interpolation/widows-interpolation.html b/polymer_0.5.0/bower_components/web-animations-js/test/blink/interpolation/widows-interpolation.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d4683c49e6efe7b3ea3713695c9b2256467c81de |
--- /dev/null |
+++ b/polymer_0.5.0/bower_components/web-animations-js/test/blink/interpolation/widows-interpolation.html |
@@ -0,0 +1,29 @@ |
+<!DOCTYPE html> |
+<body> |
+<style> |
+.target { |
+ width: 100px; |
+ height: 100px; |
+ background-color: black; |
+ display: inline-block; |
+} |
+</style> |
+<script src="../testharness/testharness.js"></script> |
+<script src="../testharness/testharnessreport.js"></script> |
+<script src="resources/interpolation-test.js"></script> |
+<script> |
+assertInterpolation({ |
+ property: 'widows', |
+ from: '10', |
+ to: '20' |
+}, [ |
+ {at: -3.0, is: '1'}, |
+ {at: -2.5, is: '1'}, |
+ {at: -0.5, is: '5'}, |
+ {at: 0, is: '10'}, |
+ {at: 0.3, is: '13'}, |
+ {at: 0.6, is: '16'}, |
+ {at: 1, is: '20'}, |
+ {at: 1.5, is: '25'} |
+]); |
+</script> |