| Index: third_party/WebKit/LayoutTests/animations/keyframes-iteration-count-non-integer.html
|
| diff --git a/third_party/WebKit/LayoutTests/animations/keyframes-iteration-count-non-integer.html b/third_party/WebKit/LayoutTests/animations/keyframes-iteration-count-non-integer.html
|
| index ccdd06d6c0e81b10bab9f0e9b8df0c489553b950..6caa48fe1289b524a7ff1ce05fb474c1da6ec12f 100644
|
| --- a/third_party/WebKit/LayoutTests/animations/keyframes-iteration-count-non-integer.html
|
| +++ b/third_party/WebKit/LayoutTests/animations/keyframes-iteration-count-non-integer.html
|
| @@ -13,12 +13,12 @@
|
| height: 100px;
|
| width: 100px;
|
| background-color: blue;
|
| - -webkit-animation-duration: 2s;
|
| - -webkit-animation-timing-function: linear;
|
| - -webkit-animation-name: anim;
|
| - -webkit-animation-iteration-count: 0.3;
|
| + animation-duration: 2s;
|
| + animation-timing-function: linear;
|
| + animation-name: anim;
|
| + animation-iteration-count: 0.3;
|
| }
|
| - @-webkit-keyframes anim {
|
| + @keyframes anim {
|
| from { left: 50px; }
|
| 20% { left: 100px; }
|
| 40% { left: 100px; }
|
| @@ -35,7 +35,7 @@
|
| testRunner.waitUntilDone();
|
| }
|
|
|
| - document.addEventListener("webkitAnimationEnd", function(event){
|
| + document.addEventListener("animationend", function(event){
|
| var result;
|
| if (event.elapsedTime > 0 && event.elapsedTime < 1)
|
| result = "PASS end of animation";
|
|
|