| Index: third_party/WebKit/LayoutTests/fast/css-generated-content/pseudo-animation-display.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/css-generated-content/pseudo-animation-display.html b/third_party/WebKit/LayoutTests/fast/css-generated-content/pseudo-animation-display.html
|
| index a44bddd5a7188403adce574fde6d286e208a1f7c..d4f6808020fe22502833f98136c646c5d7c4c3cd 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/css-generated-content/pseudo-animation-display.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/css-generated-content/pseudo-animation-display.html
|
| @@ -14,10 +14,10 @@
|
| background-color: blue;
|
| }
|
| #target.animated:after {
|
| - -webkit-animation: anim 1ms forwards;
|
| + animation: anim 1ms forwards;
|
| animation: anim 1ms forwards;
|
| }
|
| -@-webkit-keyframes anim {
|
| +@keyframes anim {
|
| from {
|
| left: 0px;
|
| display: block;
|
| @@ -47,7 +47,7 @@ if (window.testRunner) {
|
|
|
| function go() {
|
| var target = document.getElementById('target');
|
| - target.addEventListener('webkitAnimationEnd', completeTest);
|
| + target.addEventListener('animationend', completeTest);
|
| target.classList.add('animated');
|
| }
|
|
|
|
|