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

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: 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/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..67fd27d5668696ab9edcf0e5627a648f122d7973 100644
--- a/LayoutTests/transitions/cubic-bezier-overflow-transform.html
+++ b/LayoutTests/transitions/cubic-bezier-overflow-transform.html
@@ -11,10 +11,10 @@
margin: 10px;
background-color: blue;
-webkit-transition: -webkit-transform 1s linear;
alancutter (OOO until 2018) 2014/10/14 05:13:49 Need to change the transition property target as w
- -webkit-transform: rotate(0deg);
+ transform: rotate(0deg);
}
.animating > .box {
- -webkit-transform: rotate(180deg);
+ transform: rotate(180deg);
}
</style>
<script src="../animations/resources/animation-test-helpers.js"></script>

Powered by Google App Engine
This is Rietveld 408576698