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

Unified Diff: third_party/WebKit/LayoutTests/animations/cascade-important-keyframe-properties.html

Issue 2513343006: 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/cascade-important-keyframe-properties.html
diff --git a/third_party/WebKit/LayoutTests/animations/cascade-important-keyframe-properties.html b/third_party/WebKit/LayoutTests/animations/cascade-important-keyframe-properties.html
index 626588083d31c1706e3da7eefa1ff1067876832f..73afae6c358bcef0c1af35ea3f7e6208442ceba5 100644
--- a/third_party/WebKit/LayoutTests/animations/cascade-important-keyframe-properties.html
+++ b/third_party/WebKit/LayoutTests/animations/cascade-important-keyframe-properties.html
@@ -5,9 +5,9 @@
#test {
width: 100px;
height: 100px;
- -webkit-animation: test 0.5s forwards;
+ animation: test 0.5s forwards;
}
- @-webkit-keyframes test {
+ @keyframes test {
0% { background-color: green; }
50% { background-color: red !important; }
100% { background-color: green; }

Powered by Google App Engine
This is Rietveld 408576698