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

Unified Diff: third_party/WebKit/LayoutTests/animations/animation-on-inline-crash.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-on-inline-crash.html
diff --git a/third_party/WebKit/LayoutTests/animations/animation-on-inline-crash.html b/third_party/WebKit/LayoutTests/animations/animation-on-inline-crash.html
index 48f1bbb327fb2eced7710d444ccfd5d194f52854..62d3d909c9675b84de96240be98c2ae997222331 100644
--- a/third_party/WebKit/LayoutTests/animations/animation-on-inline-crash.html
+++ b/third_party/WebKit/LayoutTests/animations/animation-on-inline-crash.html
@@ -1,10 +1,10 @@
<style>
.box {
position: relative;
- -webkit-animation-delay: 5ms;
- -webkit-animation-name: anim;
+ animation-delay: 5ms;
+ animation-name: anim;
}
- @-webkit-keyframes anim {
+ @keyframes anim {
from { transform: translateX(10px); }
}
</style>

Powered by Google App Engine
This is Rietveld 408576698