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

Unified Diff: LayoutTests/animations/3d/replace-filling-transform.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/3d/replace-filling-transform.html
diff --git a/LayoutTests/animations/3d/replace-filling-transform.html b/LayoutTests/animations/3d/replace-filling-transform.html
index 04b87a369068bc071530a0068aaae059e3047f65..d3fec93ee7e03c258a1051939dc89ec317afddc4 100644
--- a/LayoutTests/animations/3d/replace-filling-transform.html
+++ b/LayoutTests/animations/3d/replace-filling-transform.html
@@ -15,24 +15,24 @@
height: 100px;
width: 100px;
background-color: red;
- -webkit-transform: translate3d(50px, 200px, 0);
+ transform: translate3d(50px, 200px, 0);
}
@-webkit-keyframes anim1 {
from {
- -webkit-transform: translate3d(100px, 0, 0);
+ transform: translate3d(100px, 0, 0);
}
to {
- -webkit-transform: translate3d(200px, 0, 0);
+ transform: translate3d(200px, 0, 0);
}
}
@-webkit-keyframes anim2 {
from {
- -webkit-transform: translate3d(50px, 0, 0);
+ transform: translate3d(50px, 0, 0);
}
to {
- -webkit-transform: translate3d(50px, 200px, 0);
+ transform: translate3d(50px, 200px, 0);
}
}
</style>

Powered by Google App Engine
This is Rietveld 408576698