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

Unified Diff: third_party/WebKit/LayoutTests/animations/keyframes-comma-separated.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/keyframes-comma-separated.html
diff --git a/third_party/WebKit/LayoutTests/animations/keyframes-comma-separated.html b/third_party/WebKit/LayoutTests/animations/keyframes-comma-separated.html
index 8533eb1d820de0cb276aebcae40d012d2e76cd74..62e8e68121542c16568d0c765370e6c36c1d9999 100644
--- a/third_party/WebKit/LayoutTests/animations/keyframes-comma-separated.html
+++ b/third_party/WebKit/LayoutTests/animations/keyframes-comma-separated.html
@@ -13,11 +13,11 @@
height: 100px;
width: 100px;
background-color: blue;
- -webkit-animation-duration: 1s;
- -webkit-animation-timing-function: linear;
- -webkit-animation-name: anim;
+ animation-duration: 1s;
+ animation-timing-function: linear;
+ animation-name: anim;
}
- @-webkit-keyframes anim {
+ @keyframes anim {
from { left: 50px; }
20%, 40% { left: 100px; }
60%,80%{ left: 200px; }

Powered by Google App Engine
This is Rietveld 408576698