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

Unified Diff: LayoutTests/transitions/cubic-bezier-overflow-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/transitions/cubic-bezier-overflow-transform.html
diff --git a/LayoutTests/transitions/cubic-bezier-overflow-transform.html b/LayoutTests/transitions/cubic-bezier-overflow-transform.html
index 6d648cfcbace9d3eeb1954910278d3988c6cde9e..66913910f9e37fe1745be39a46769bfc38eaf5e4 100644
--- a/LayoutTests/transitions/cubic-bezier-overflow-transform.html
+++ b/LayoutTests/transitions/cubic-bezier-overflow-transform.html
@@ -10,11 +10,11 @@
width: 100px;
margin: 10px;
background-color: blue;
- -webkit-transition: -webkit-transform 1s linear;
- -webkit-transform: rotate(0deg);
+ -webkit-transition: transform 1s linear;
+ transform: rotate(0deg);
}
.animating > .box {
- -webkit-transform: rotate(180deg);
+ transform: rotate(180deg);
}
</style>
<script src="../animations/resources/animation-test-helpers.js"></script>
« no previous file with comments | « LayoutTests/transitions/cancel-transition.html ('k') | LayoutTests/transitions/default-timing-function.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698