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

Unified Diff: third_party/WebKit/LayoutTests/animations/3d/change-transform-in-end-event.html

Issue 2527583002: CSS Animations: Remove unnecessary webkit prefixes from 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/animations/3d/replace-filling-transform.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/animations/3d/change-transform-in-end-event.html
diff --git a/third_party/WebKit/LayoutTests/animations/3d/change-transform-in-end-event.html b/third_party/WebKit/LayoutTests/animations/3d/change-transform-in-end-event.html
index 0f26f000fba843cf47e52d171a26076b5b53f765..0b08d56b1bcdbb1b273140f57deb76ec69cd7d68 100644
--- a/third_party/WebKit/LayoutTests/animations/3d/change-transform-in-end-event.html
+++ b/third_party/WebKit/LayoutTests/animations/3d/change-transform-in-end-event.html
@@ -29,14 +29,14 @@
}
#container.moved .hardware {
- -webkit-animation: move 300ms linear;
+ animation: move 300ms linear;
}
.hardware {
- -webkit-transform-style: preserve-3d;
+ transform-style: preserve-3d;
}
- @-webkit-keyframes move {
+ @keyframes move {
from { transform: translateX(0); }
to { transform: translateX(300px); }
}
@@ -45,7 +45,7 @@
function testEnded()
{
- document.getElementById('tester').style.webkitTransform = 'translateX(150px)';
+ document.getElementById('tester').style.transform = 'translateX(150px)';
if (window.testRunner)
testRunner.notifyDone();
}
@@ -55,7 +55,7 @@
if (window.testRunner)
testRunner.waitUntilDone();
- document.getElementById('tester').addEventListener('webkitAnimationEnd', testEnded, false);
+ document.getElementById('tester').addEventListener('animationend', testEnded, false);
document.getElementById('container').className = 'moved';
}
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/animations/3d/replace-filling-transform.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698