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

Unified Diff: third_party/WebKit/LayoutTests/animations/missing-keyframe-properties-repeating.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/missing-keyframe-properties-repeating.html
diff --git a/third_party/WebKit/LayoutTests/animations/missing-keyframe-properties-repeating.html b/third_party/WebKit/LayoutTests/animations/missing-keyframe-properties-repeating.html
index 9a6d2bee69561ac69d89d363f1ba4e50482884f7..5e3b76b74fc1285cb9d3a25b379ef047990e55b9 100644
--- a/third_party/WebKit/LayoutTests/animations/missing-keyframe-properties-repeating.html
+++ b/third_party/WebKit/LayoutTests/animations/missing-keyframe-properties-repeating.html
@@ -9,13 +9,13 @@
left: 0;
background-color: blue;
margin: 0;
- -webkit-animation-duration: 2s;
- -webkit-animation-timing-function: linear;
- -webkit-animation-iteration-count: 2;
- -webkit-animation-direction: alternate;
- -webkit-animation-name: move;
+ animation-duration: 2s;
+ animation-timing-function: linear;
+ animation-iteration-count: 2;
+ animation-direction: alternate;
+ animation-name: move;
}
- @-webkit-keyframes move {
+ @keyframes move {
from {
opacity: 1;
}

Powered by Google App Engine
This is Rietveld 408576698