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

Unified Diff: LayoutTests/animations/change-transform-style-during-animation.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/change-transform-style-during-animation.html
diff --git a/LayoutTests/animations/change-transform-style-during-animation.html b/LayoutTests/animations/change-transform-style-during-animation.html
index a457d763ff65fd48db2fd7839e750397ec67c265..d4b17f249fc21bd54e755feeebfa08ef5ef8397f 100644
--- a/LayoutTests/animations/change-transform-style-during-animation.html
+++ b/LayoutTests/animations/change-transform-style-during-animation.html
@@ -3,7 +3,7 @@
<head>
<style>
#container {
- -webkit-transform: translateZ(0px);
+ transform: translateZ(0px);
-webkit-perspective: 400;
}
@@ -21,7 +21,7 @@
height: 100px;
width: 100px;
background-color: red;
- -webkit-transform: translateZ(10px);
+ transform: translateZ(10px);
-webkit-transform-style: preserve-3d;
-webkit-animation-duration: 100ms;
-webkit-animation-fill-mode: both;
@@ -30,8 +30,8 @@
}
@-webkit-keyframes anim {
- from { -webkit-transform: translateZ(0px) translateX(0px); }
- to { -webkit-transform: translateZ(200px) translateX(-200px); }
+ from { transform: translateZ(0px) translateX(0px); }
+ to { transform: translateZ(200px) translateX(-200px); }
}
</style>

Powered by Google App Engine
This is Rietveld 408576698