Chromium Code Reviews| Index: content/test/data/transform-animation.html |
| diff --git a/content/test/data/transform-animation.html b/content/test/data/transform-animation.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..77fe7b32fab2dac195d83a834cd364c5c4efd0a5 |
| --- /dev/null |
| +++ b/content/test/data/transform-animation.html |
| @@ -0,0 +1,11 @@ |
| +<!DOCTYPE html> |
| +<style> |
| +@keyframes test { |
| + to { transform: rotate(360deg); } |
| +} |
| + |
| +#target { |
| + animation: test 1s infinite; |
| +} |
| +</style> |
| +<div id="target">Simple transform animation</div> |