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

Unified Diff: LayoutTests/animations/animation-direction-reverse-fill-mode-hardware.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove duplicate transform 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/animation-direction-reverse-fill-mode-hardware.html
diff --git a/LayoutTests/animations/animation-direction-reverse-fill-mode-hardware.html b/LayoutTests/animations/animation-direction-reverse-fill-mode-hardware.html
index 33bcbfa7af233c7871f489c27547abb679baaf65..07c669b4176bf31d19162715358e5271b1973feb 100644
--- a/LayoutTests/animations/animation-direction-reverse-fill-mode-hardware.html
+++ b/LayoutTests/animations/animation-direction-reverse-fill-mode-hardware.html
@@ -9,15 +9,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: #f99;

Powered by Google App Engine
This is Rietveld 408576698