| Index: third_party/WebKit/LayoutTests/imported/wpt/web-animations/timing-model/animation-effects/simple-iteration-progress.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/web-animations/keyframe-effect/getComputedTiming-progress.html b/third_party/WebKit/LayoutTests/imported/wpt/web-animations/timing-model/animation-effects/simple-iteration-progress.html
|
| similarity index 91%
|
| rename from third_party/WebKit/LayoutTests/imported/wpt/web-animations/keyframe-effect/getComputedTiming-progress.html
|
| rename to third_party/WebKit/LayoutTests/imported/wpt/web-animations/timing-model/animation-effects/simple-iteration-progress.html
|
| index 4cecc1d5cc73337e3dccf7dde60c78aa020004fb..4a2069c063ee981d5a58af1812a18458529042a5 100644
|
| --- a/third_party/WebKit/LayoutTests/imported/wpt/web-animations/keyframe-effect/getComputedTiming-progress.html
|
| +++ b/third_party/WebKit/LayoutTests/imported/wpt/web-animations/timing-model/animation-effects/simple-iteration-progress.html
|
| @@ -1,11 +1,11 @@
|
| <!DOCTYPE html>
|
| <meta charset=utf-8>
|
| -<title>progress of KeyframeEffectReadOnly getComputedTiming() tests</title>
|
| -<link rel="help" href="https://w3c.github.io/web-animations/#dom-animationeffectreadonly-getcomputedtiming">
|
| -<link rel="author" title="Daisuke Akatsuka" href="mailto:daisuke@mozilla-japan.org">
|
| -<script src="../../../../resources/testharness.js"></script>
|
| -<script src="../../../../resources/testharnessreport.js"></script>
|
| -<script src="../testcommon.js"></script>
|
| +<title>Simple iteration progress tests</title>
|
| +<link rel="help"
|
| + href="https://w3c.github.io/web-animations/#simple-iteration-progress">
|
| +<script src="../../../../../resources/testharness.js"></script>
|
| +<script src="../../../../../resources/testharnessreport.js"></script>
|
| +<script src="../../testcommon.js"></script>
|
| <body>
|
| <div id="log"></div>
|
| <script>
|
| @@ -34,16 +34,6 @@ function executeTests(tests, description) {
|
| });
|
| }
|
|
|
| -async_test(function(t) {
|
| - var div = createDiv(t);
|
| - var anim = div.animate({ opacity: [ 0, 1 ] }, { delay: 1 });
|
| - assert_equals(anim.effect.getComputedTiming().progress, null);
|
| - anim.finished.then(t.step_func(function() {
|
| - assert_equals(anim.effect.getComputedTiming().progress, null);
|
| - t.done();
|
| - }));
|
| -}, 'Test progress during before and after phase when fill is none');
|
| -
|
| var gTests_zero_iterations = [
|
| {
|
| input: { iterations: 0,
|
|
|