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

Unified Diff: third_party/WebKit/LayoutTests/compositing/layer-creation/overlap-animation-container.html

Issue 2518273002: Remove unnecessary webkit prefixes from animation layout tests (Closed)
Patch Set: remove trailing space 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
« no previous file with comments | « third_party/WebKit/LayoutTests/compositing/layer-creation/overlap-animation.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/compositing/layer-creation/overlap-animation-container.html
diff --git a/third_party/WebKit/LayoutTests/compositing/layer-creation/overlap-animation-container.html b/third_party/WebKit/LayoutTests/compositing/layer-creation/overlap-animation-container.html
index 1bb2cbbf47e2a61e9a2c4b7b8310b448925bb772..4b67fe9a4efef9685736ccd9bdad18ecb0ce9aad 100644
--- a/third_party/WebKit/LayoutTests/compositing/layer-creation/overlap-animation-container.html
+++ b/third_party/WebKit/LayoutTests/compositing/layer-creation/overlap-animation-container.html
@@ -42,10 +42,10 @@
}
.animating1 {
- -webkit-animation: translate1 2s linear infinite alternate;
+ animation: translate1 2s linear infinite alternate;
}
- @-webkit-keyframes translate1 {
+ @keyframes translate1 {
from { transform: translate(0px, -110px); }
to { transform: translate(0px, 700px); }
}
@@ -58,7 +58,7 @@
function queueBoxForAnimation(elementId, animationClass, callback) {
var box = document.getElementById(elementId);
- box.addEventListener('webkitAnimationStart', callback, false);
+ box.addEventListener('animationstart', callback, false);
box.classList.add(animationClass);
}
« no previous file with comments | « third_party/WebKit/LayoutTests/compositing/layer-creation/overlap-animation.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698