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

Unified Diff: LayoutTests/animations/resources/dynamic-stylesheet-insertion-main.css

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « LayoutTests/animations/play-state.html ('k') | LayoutTests/animations/simultaneous-start-transform.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/animations/resources/dynamic-stylesheet-insertion-main.css
diff --git a/LayoutTests/animations/resources/dynamic-stylesheet-insertion-main.css b/LayoutTests/animations/resources/dynamic-stylesheet-insertion-main.css
index 249130017c4b099e26e8ca6563cd1d6fada432c7..ca6ed53cf71680fe207928ffe1432a04da078bf0 100644
--- a/LayoutTests/animations/resources/dynamic-stylesheet-insertion-main.css
+++ b/LayoutTests/animations/resources/dynamic-stylesheet-insertion-main.css
@@ -10,7 +10,7 @@ body {
width: 100px;
height: 100px;
background-color: blue;
- -webkit-transform: translate3d(0,80px,0);
+ transform: translate3d(0,80px,0);
-webkit-animation-name: splashdown;
-webkit-animation-duration: 0.6s;
-webkit-animation-delay: 0.1s;
@@ -18,20 +18,20 @@ body {
@-webkit-keyframes splashdown {
0% {
- -webkit-transform: translate3d(0, -300px, 0);
+ transform: translate3d(0, -300px, 0);
}
30% {
-webkit-animation-timing-function: ease-in;
- -webkit-transform: translate3d(0, 20px, 0);
+ transform: translate3d(0, 20px, 0);
}
40% {
-webkit-animation-timing-function: ease-in-out;
- -webkit-transform: translate3d(0, 100px, 0);
+ transform: translate3d(0, 100px, 0);
}
90% {
- -webkit-transform: translate3d(0, 100px, 0);
+ transform: translate3d(0, 100px, 0);
}
100% {
- -webkit-transform: translate3d(0, 100px, 0);
+ transform: translate3d(0, 100px, 0);
}
}
« no previous file with comments | « LayoutTests/animations/play-state.html ('k') | LayoutTests/animations/simultaneous-start-transform.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698