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

Unified Diff: third_party/WebKit/LayoutTests/animations/keyframe-timing-functions2.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-functions2.html
diff --git a/third_party/WebKit/LayoutTests/animations/keyframe-timing-functions2.html b/third_party/WebKit/LayoutTests/animations/keyframe-timing-functions2.html
index aa73cc0adda5483f2b68f381f2b3fc7366f317b5..b1c0e8b3d539d83742f2f2ddfa6ad4deb17c3df3 100644
--- a/third_party/WebKit/LayoutTests/animations/keyframe-timing-functions2.html
+++ b/third_party/WebKit/LayoutTests/animations/keyframe-timing-functions2.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% {
left: 0;
- -webkit-animation-timing-function: ease-out;
+ animation-timing-function: ease-out;
}
10% {
left: 100px;
- -webkit-animation-timing-function: linear;
+ animation-timing-function: linear;
}
90% {
left: 500px;
- -webkit-animation-timing-function: ease-in;
+ animation-timing-function: ease-in;
}
100% {
left: 600px;

Powered by Google App Engine
This is Rietveld 408576698