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

Unified Diff: third_party/WebKit/LayoutTests/animations/keyframe-timing-functions-transform.html

Issue 2522123002: 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
Index: third_party/WebKit/LayoutTests/animations/keyframe-timing-functions-transform.html
diff --git a/third_party/WebKit/LayoutTests/animations/keyframe-timing-functions-transform.html b/third_party/WebKit/LayoutTests/animations/keyframe-timing-functions-transform.html
index d0adc90d0d450ece0532147a8110c0fbbd78f76e..943e24ef63ab97a7b45ef9e9f9adcf06fe0c7bc0 100644
--- a/third_party/WebKit/LayoutTests/animations/keyframe-timing-functions-transform.html
+++ b/third_party/WebKit/LayoutTests/animations/keyframe-timing-functions-transform.html
@@ -16,22 +16,22 @@
height: 100px;
width: 100px;
background-color: blue;
- -webkit-animation-name: move;
- -webkit-animation-duration: 1.5s;
+ animation-name: move;
+ animation-duration: 1.5s;
}
- @-webkit-keyframes move {
+ @keyframes move {
0% {
transform: translateX(0);
- -webkit-animation-timing-function: ease-out;
+ animation-timing-function: ease-out;
}
10% {
transform: translateX(100px);
- -webkit-animation-timing-function: linear;
+ animation-timing-function: linear;
}
90% {
transform: translateX(500px);
- -webkit-animation-timing-function: ease-in;
+ animation-timing-function: ease-in;
}
100% {
transform: translateX(600px);
@@ -44,7 +44,7 @@
const expectedValues = [
// [time, element-id, property, expected-value, tolerance]
- [0.75, "box", "webkitTransform.4", 300, 20],
+ [0.75, "box", "transform.4", 300, 20],
];
runAnimationTest(expectedValues);

Powered by Google App Engine
This is Rietveld 408576698