| Index: third_party/WebKit/LayoutTests/animations/responsive-neutral-keyframe.html
|
| diff --git a/third_party/WebKit/LayoutTests/animations/responsive-neutral-keyframe.html b/third_party/WebKit/LayoutTests/animations/responsive-neutral-keyframe.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..4ce193b55baa17a19009e538436fe2aaa8a2688d
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/animations/responsive-neutral-keyframe.html
|
| @@ -0,0 +1,18 @@
|
| +<!DOCTYPE html>
|
| +<div id="target">Test.</div>
|
| +<script>
|
| +if (window.testRunner)
|
| + testRunner.waitUntilDone();
|
| +
|
| +target.animate({translate: '100px'}, 1e8);
|
| +
|
| +requestAnimationFrame(() => {
|
| + requestAnimationFrame(() => {
|
| + target.style.translate = '100px';
|
| + requestAnimationFrame(() => {
|
| + if (window.testRunner)
|
| + testRunner.notifyDone();
|
| + });
|
| + });
|
| +});
|
| +</script>
|
|
|