Chromium Code Reviews| Index: content/test/data/page_with_animation.html |
| diff --git a/content/test/data/page_with_animation.html b/content/test/data/page_with_animation.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..9c1c977a6ae8e9e69b84c37d42d415309fd9493b |
| --- /dev/null |
| +++ b/content/test/data/page_with_animation.html |
| @@ -0,0 +1,29 @@ |
| +<!doctype html> |
| +<html> |
| + <head> |
| + <style> |
| + @keyframes move { |
| + from { |
| + transform: translate(-200px, 0); |
| + } |
| + to { |
| + transform: translate(200px, 0); |
| + } |
| + } |
| + |
| + div { |
| + height: 200px; |
| + width: 200px; |
| + |
| + animation-duration: 1.5s; |
| + animation-iteration-count: infinite; |
| + animation-name: move; |
| + |
| + background: black; |
| + } |
| + </style> |
| + </head> |
| + <body> |
| + <div></div> |
| + </body> |
| +</html> |