| Index: third_party/WebKit/LayoutTests/external/wpt/web-animations/interfaces/AnimationEffectTiming/iterations.html
|
| diff --git a/third_party/WebKit/LayoutTests/external/wpt/web-animations/interfaces/AnimationEffectTiming/iterations.html b/third_party/WebKit/LayoutTests/external/wpt/web-animations/interfaces/AnimationEffectTiming/iterations.html
|
| index 1ba41028b2255c78f897841cbd61ecd5a8c5ff6d..8dfe1695643a9249de6dccf86c811b76439dd3c8 100644
|
| --- a/third_party/WebKit/LayoutTests/external/wpt/web-animations/interfaces/AnimationEffectTiming/iterations.html
|
| +++ b/third_party/WebKit/LayoutTests/external/wpt/web-animations/interfaces/AnimationEffectTiming/iterations.html
|
| @@ -11,6 +11,11 @@
|
| 'use strict';
|
|
|
| test(function(t) {
|
| + var anim = createDiv(t).animate(null);
|
| + assert_equals(anim.effect.timing.iterations, 1);
|
| +}, 'Test default value');
|
| +
|
| +test(function(t) {
|
| var div = createDiv(t);
|
| var anim = div.animate({ opacity: [ 0, 1 ] }, 2000);
|
| anim.effect.timing.iterations = 2;
|
|
|