Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/animations/resources/frame_with_animation.html |
| diff --git a/third_party/WebKit/LayoutTests/animations/resources/frame_with_animation.html b/third_party/WebKit/LayoutTests/animations/resources/frame_with_animation.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..8a9042b9bb4b2c0f8ed7ebd782c032a0193882cf |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/animations/resources/frame_with_animation.html |
| @@ -0,0 +1,15 @@ |
| +<!DOCTYPE html> |
| +<style> |
| + #target { |
| + position: relative; |
| + height: 50px; |
| + width: 50px; |
| + background-color: blue; |
| + animation: slide-right 1s linear forwards; |
| + } |
| + @keyframes slide-right { |
| + from { left: 0px; } |
| + to { left: 10000px; } |
| + } |
| +</style> |
| +<div id="target"></div> |