| Index: third_party/WebKit/LayoutTests/animations/display-none-cancels-nested-animations.html
|
| diff --git a/third_party/WebKit/LayoutTests/animations/display-none-cancels-nested-animations.html b/third_party/WebKit/LayoutTests/animations/display-none-cancels-nested-animations.html
|
| index be9df8ca74d33cbdc85e3ea667b35f10ed41ff38..274ac89971b19a85e57f6f56ab0f1ed83d8d1625 100644
|
| --- a/third_party/WebKit/LayoutTests/animations/display-none-cancels-nested-animations.html
|
| +++ b/third_party/WebKit/LayoutTests/animations/display-none-cancels-nested-animations.html
|
| @@ -4,14 +4,14 @@
|
| width: 50px;
|
| height: 50px;
|
| background: red;
|
| - -webkit-animation: flash 0.2s infinite;
|
| + animation: flash 0.2s infinite;
|
| }
|
|
|
| .hideMe {
|
| display: none;
|
| }
|
|
|
| -@-webkit-keyframes flash {
|
| +@keyframes flash {
|
| 0% {
|
| opacity: 1;
|
| }
|
| @@ -29,7 +29,7 @@ if (window.testRunner) {
|
| testRunner.dumpAsText();
|
| }
|
| var firstCall = true;
|
| -child.addEventListener('webkitAnimationStart', function(e) {
|
| +child.addEventListener('animationstart', function(e) {
|
| if (firstCall) {
|
| container.classList.add('hideMe');
|
| container.offsetTop;
|
|
|