| Index: third_party/WebKit/LayoutTests/animations/font-size-using-ems.html-disabled
|
| diff --git a/third_party/WebKit/LayoutTests/animations/font-size-using-ems.html-disabled b/third_party/WebKit/LayoutTests/animations/font-size-using-ems.html-disabled
|
| index 9ef54fe23d0aa7123f944514c3849d2dba02f1ff..8daee271665c909b725f4d0bbe1b3d40160b680b 100644
|
| --- a/third_party/WebKit/LayoutTests/animations/font-size-using-ems.html-disabled
|
| +++ b/third_party/WebKit/LayoutTests/animations/font-size-using-ems.html-disabled
|
| @@ -18,11 +18,11 @@
|
| height: 250px;
|
| width: 400px;
|
| border: 1px solid black;
|
| - -webkit-animation-duration: 1s;
|
| - -webkit-animation-timing-function: linear;
|
| - -webkit-animation-name: anim;
|
| + animation-duration: 1s;
|
| + animation-timing-function: linear;
|
| + animation-name: anim;
|
| }
|
| - @-webkit-keyframes anim {
|
| + @keyframes anim {
|
| from { font-size: 1em; }
|
| to { font-size: 2em; }
|
| }
|
| @@ -66,7 +66,7 @@
|
| }, 400);
|
| }
|
|
|
| - document.addEventListener('webkitAnimationStart', start, false);
|
| + document.addEventListener('animationstart', start, false);
|
|
|
| </script>
|
| </head>
|
|
|