Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Unified Diff: third_party/WebKit/LayoutTests/images/color-profile-animate.html

Issue 2513413007: CSS Animations: Reduce usage of webkit prefix in layout tests (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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');
}

Powered by Google App Engine
This is Rietveld 408576698