| Index: polymer_0.5.0/bower_components/web-animations-js/test/blink/interpolation/bottom-interpolation.html | 
| diff --git a/polymer_0.5.0/bower_components/web-animations-js/test/blink/interpolation/bottom-interpolation.html b/polymer_0.5.0/bower_components/web-animations-js/test/blink/interpolation/bottom-interpolation.html | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..f14b5211633c097b909e040832fc5aa7e1635192 | 
| --- /dev/null | 
| +++ b/polymer_0.5.0/bower_components/web-animations-js/test/blink/interpolation/bottom-interpolation.html | 
| @@ -0,0 +1,33 @@ | 
| +<!DOCTYPE html> | 
| +<meta charset="UTF-8"> | 
| +<style> | 
| +.target { | 
| +  position: relative; | 
| +  width: 100px; | 
| +  height: 100px; | 
| +  background-color: black; | 
| +  display: inline-block; | 
| +  margin: 20px 5px 20px 0px; | 
| +} | 
| +.replica { | 
| +  background-color: green; | 
| +} | 
| +</style> | 
| +<body> | 
| +<script src="../testharness/testharness.js"></script> | 
| +<script src="../testharness/testharnessreport.js"></script> | 
| +<script src="resources/interpolation-test.js"></script> | 
| +<script> | 
| +assertInterpolation({ | 
| +  property: 'bottom', | 
| +  from: '-10px', | 
| +  to: '10px' | 
| +}, [ | 
| +  {at: -0.3, is: '-16px'}, | 
| +  {at: 0, is: '-10px'}, | 
| +  {at: 0.5, is: '0px'}, | 
| +  {at: 1, is: '10px'}, | 
| +  {at: 1.5, is: '20px'} | 
| +]); | 
| +</script> | 
| +</body> | 
|  |