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

Unified Diff: third_party/WebKit/ManualTests/animation-with-transition.html

Issue 2715113003: CSS manual tests: reduce usage of webkit prefix (Closed)
Patch Set: Created 3 years, 10 months 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/ManualTests/animation-with-transition.html
diff --git a/third_party/WebKit/ManualTests/animation-with-transition.html b/third_party/WebKit/ManualTests/animation-with-transition.html
index 37a758983fc2e0e1be6751f125da11f15752aead..eaff5ed72ecd00c8dfb8b31c471d2702f92ccd38 100644
--- a/third_party/WebKit/ManualTests/animation-with-transition.html
+++ b/third_party/WebKit/ManualTests/animation-with-transition.html
@@ -10,17 +10,17 @@
width: 200px;
height: 200px;
background-color: #696;
- -webkit-transition: left 5s, top 5s;
+ transition: left 5s, top 5s;
}
.animate {
- -webkit-animation-name: simple;
- -webkit-animation-duration: 2s;
- -webkit-animation-timing-function: linear;
- -webkit-animation-fill-mode: backwards;
+ animation-name: simple;
+ animation-duration: 2s;
+ animation-timing-function: linear;
+ animation-fill-mode: backwards;
}
- @-webkit-keyframes simple {
+ @keyframes simple {
50% {
left: 300px;
}

Powered by Google App Engine
This is Rietveld 408576698