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

Unified Diff: third_party/WebKit/LayoutTests/animations/duplicated-keyframes-name-unprefixed-01.html

Issue 2523543004: 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/duplicated-keyframes-name-unprefixed-01.html
diff --git a/third_party/WebKit/LayoutTests/animations/duplicated-keyframes-name-unprefixed-01.html b/third_party/WebKit/LayoutTests/animations/duplicated-keyframes-name-unprefixed-01.html
index 20a8346db9b5478fccb4c21fb3721aa269a632e5..6e1cadb98caa8a2599bd69cae2a6b1afe70f0467 100644
--- a/third_party/WebKit/LayoutTests/animations/duplicated-keyframes-name-unprefixed-01.html
+++ b/third_party/WebKit/LayoutTests/animations/duplicated-keyframes-name-unprefixed-01.html
@@ -13,10 +13,10 @@
height: 100px;
width: 100px;
background-color: blue;
- -webkit-animation-duration: 1s;
- -webkit-animation-timing-function: linear;
- -webkit-animation-name: anim;
- -webkit-animation-fill-mode: forwards;
+ animation-duration: 1s;
+ animation-timing-function: linear;
+ animation-name: anim;
+ animation-fill-mode: forwards;
}
@keyframes anim {
from { left: 50px; }

Powered by Google App Engine
This is Rietveld 408576698