| Index: third_party/WebKit/LayoutTests/images/color-profile-animate.html
|
| diff --git a/third_party/WebKit/LayoutTests/images/color-profile-animate.html b/third_party/WebKit/LayoutTests/images/color-profile-animate.html
|
| index b3fc032fa1dffd589424d0071fa558f278ea9aea..d500106b76e30a0a4be6bcf8ebe234ef0b432d08 100644
|
| --- a/third_party/WebKit/LayoutTests/images/color-profile-animate.html
|
| +++ b/third_party/WebKit/LayoutTests/images/color-profile-animate.html
|
| @@ -2,10 +2,10 @@
|
| <html>
|
| <style>
|
| .fade {
|
| - -webkit-animation: fader linear 0.5s
|
| + animation: fader linear 0.5s
|
| }
|
|
|
| - @-webkit-keyframes fader {
|
| + @keyframes fader {
|
| 0% { opacity: 1.0 }
|
| 50% { opacity: 0.0 }
|
| }
|
| @@ -16,7 +16,7 @@
|
|
|
| <script>
|
| function fade(element) {
|
| - element.addEventListener('webkitAnimationEnd', end, false);
|
| + element.addEventListener('animationend', end, false);
|
| element.classList.toggle('fade');
|
| }
|
|
|
|
|