Index: LayoutTests/virtual/threaded/animations/zoom-responsive-transform-animation-expected.html |
diff --git a/LayoutTests/virtual/threaded/animations/zoom-responsive-transform-animation-expected.html b/LayoutTests/virtual/threaded/animations/zoom-responsive-transform-animation-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b9ff1dcd8e9eddcc4b0cff4733b995373ba5ef71 |
--- /dev/null |
+++ b/LayoutTests/virtual/threaded/animations/zoom-responsive-transform-animation-expected.html |
@@ -0,0 +1,18 @@ |
+<!DOCTYPE html> |
+<style> |
+div { |
+ position: absolute; |
+ width: 100px; |
+ height: 100px; |
+ background: black; |
+ animation: test 1e8s; |
+} |
+@keyframes test { |
+ from {transform: translate(100px, 100px);} |
+ to {transform: translate(100px, 100px);} |
+} |
+</style> |
+<div></div> |
+<script> |
+internals.setZoomFactor(2); |
+</script> |