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

Unified Diff: LayoutTests/animations/fill-mode-transform.html

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
Index: LayoutTests/animations/fill-mode-transform.html
diff --git a/LayoutTests/animations/fill-mode-transform.html b/LayoutTests/animations/fill-mode-transform.html
index a9b12277fdcf60279f28933b37cb118114cc678d..40a053337df3b6720478fe1adc741ee4be04d16c 100644
--- a/LayoutTests/animations/fill-mode-transform.html
+++ b/LayoutTests/animations/fill-mode-transform.html
@@ -12,15 +12,15 @@
top: 10px;
height: 100px;
width: 100px;
- -webkit-transform: translate3d(100px, 0, 0);
+ transform: translate3d(100px, 0, 0);
-webkit-animation-delay: 0.1s;
-webkit-animation-duration: 0.1s;
-webkit-animation-timing-function: linear;
-webkit-animation-name: anim;
}
@-webkit-keyframes anim {
- from { -webkit-transform: translate3d(200px, 0, 0); }
- to { -webkit-transform: translate3d(300px, 0, 0); }
+ from { transform: translate3d(200px, 0, 0); }
+ to { transform: translate3d(300px, 0, 0); }
}
#a {
background-color: blue;
« no previous file with comments | « LayoutTests/animations/fill-mode-forwards2.html ('k') | LayoutTests/animations/interpolation/perspective-interpolation.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698