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

Unified Diff: ManualTests/animation/transitions-and-paused-animations.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: ManualTests/animation/transitions-and-paused-animations.html
diff --git a/ManualTests/animation/transitions-and-paused-animations.html b/ManualTests/animation/transitions-and-paused-animations.html
index 388d8370473e65a2b660f4c7ddee713c69ffe83d..a1e2e53b759da337d1682cf949d353427d6772a9 100644
--- a/ManualTests/animation/transitions-and-paused-animations.html
+++ b/ManualTests/animation/transitions-and-paused-animations.html
@@ -15,7 +15,7 @@
}
.moved {
- -webkit-transform: translateX(100px);
+ transform: translateX(100px);
}
.box {
@@ -24,7 +24,7 @@
width: 100px;
margin: 50px;
background-color: blue;
- -webkit-transform: translateZ(0);
+ transform: translateZ(0);
-webkit-animation: fade 1s infinite linear alternate;
}
@@ -33,8 +33,8 @@
}
@-webkit-keyframes fade {
- from { -webkit-transform: rotate(-20deg); }
- to { -webkit-transform: rotate(20deg); }
+ from { transform: rotate(-20deg); }
+ to { transform: rotate(20deg); }
}
</style>
<script type="text/javascript" charset="utf-8">

Powered by Google App Engine
This is Rietveld 408576698