Index: third_party/WebKit/Source/core/paint/test_data/transform-animation.html |
diff --git a/third_party/WebKit/Source/core/paint/test_data/transform-animation.html b/third_party/WebKit/Source/core/paint/test_data/transform-animation.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..600e84010cfbbfe944f839a255c50dfe208587b3 |
--- /dev/null |
+++ b/third_party/WebKit/Source/core/paint/test_data/transform-animation.html |
@@ -0,0 +1,13 @@ |
+<!DOCTYPE html> |
+<style> |
+@keyframes test { |
+ 0% { transform: translate(1em, 1em) } |
+ 100% { transform: translate(2em, 2em) } |
+} |
+ |
+.animate { |
+ animation-name: test; |
+ animation-duration: 1s; |
+} |
+</style> |
+<div id="target" class="animate"></div>; |