Index: LayoutTests/virtual/threaded/animations/compositor-rotate-zero-degrees.html |
diff --git a/LayoutTests/virtual/threaded/animations/compositor-rotate-zero-degrees.html b/LayoutTests/virtual/threaded/animations/compositor-rotate-zero-degrees.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..08b481975bf0e5c2ae808d7ff88710bc3c497b34 |
--- /dev/null |
+++ b/LayoutTests/virtual/threaded/animations/compositor-rotate-zero-degrees.html |
@@ -0,0 +1,25 @@ |
+<!DOCTYPE html> |
+<style> |
+div { |
+ position: absolute; |
+ width: 100px; |
+ height: 100px; |
+} |
+ |
+#target { |
+ border-color: green; |
+ border-style: dotted dashed solid double; |
+} |
+</style> |
+ |
+<div id="target"></div> |
+ |
+<script> |
+ |
+var keyframes = [{ rotate: '0deg 0 1 0' }, { rotate: '450deg 1 0 0'}] |
+ |
+var animation = target.animate(keyframes, { duration: 2000 }); |
+animation.pause(); |
+animation.currentTime = 1000; |
+ |
+</script> |