Index: third_party/WebKit/LayoutTests/virtual/threaded/animations/element-animate-positive-delay.html |
diff --git a/third_party/WebKit/LayoutTests/virtual/threaded/animations/element-animate-positive-delay.html b/third_party/WebKit/LayoutTests/virtual/threaded/animations/element-animate-positive-delay.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..43503086f33d4be647f204ec6c89c42da64d11dd |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/virtual/threaded/animations/element-animate-positive-delay.html |
@@ -0,0 +1,17 @@ |
+<!DOCTYPE html> |
+<script src="../../../resources/testharness.js"></script> |
+<script src="../../../resources/testharnessreport.js"></script> |
+<div id="target"></div> |
+<script> |
+promise_test(function() { |
+ var animation = target.animate({ |
+ transform: ['rotate(0deg)', 'rotate(180deg)'], |
+ }, { |
+ duration: 100000, |
+ delay: 1, |
+ }); |
+ return animation.ready.then(() => { |
+ assert_true(internals.isCompositedAnimation(animation)); |
+ }); |
+}, 'element.animate() with a positive delay should run compositor animations'); |
+</script> |