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

Unified Diff: third_party/WebKit/LayoutTests/animations/animation-paused-hardware.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/animation-paused-hardware.html
diff --git a/third_party/WebKit/LayoutTests/animations/animation-paused-hardware.html b/third_party/WebKit/LayoutTests/animations/animation-paused-hardware.html
index db49dd44cf12797d875748de4b200521f9033f14..dbc1d7ec9968006420979c8e3459ac6d7dd27739 100644
--- a/third_party/WebKit/LayoutTests/animations/animation-paused-hardware.html
+++ b/third_party/WebKit/LayoutTests/animations/animation-paused-hardware.html
@@ -8,14 +8,14 @@
height: 100px;
width: 100px;
opacity: 1.0;
- -webkit-animation-play-state: paused;
- -webkit-animation-duration: 0.2s;
- -webkit-animation-timing-function: linear;
- -webkit-animation-name: fade;
- -webkit-animation-fill-mode: forwards;
+ animation-play-state: paused;
+ animation-duration: 0.2s;
+ animation-timing-function: linear;
+ animation-name: fade;
+ animation-fill-mode: forwards;
}
- @-webkit-keyframes fade {
+ @keyframes fade {
to { opacity: 0.3; }
}
</style>

Powered by Google App Engine
This is Rietveld 408576698