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

Unified Diff: LayoutTests/fast/layers/no-clipping-overflow-hidden-added-after-transition.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/fast/layers/no-clipping-overflow-hidden-added-after-transition.html
diff --git a/LayoutTests/fast/layers/no-clipping-overflow-hidden-added-after-transition.html b/LayoutTests/fast/layers/no-clipping-overflow-hidden-added-after-transition.html
index 854bccdf66d6107e36d15db414a345f598b3e087..c398afcffab7bb5ee1b2bff6bc82175ef91defe8 100644
--- a/LayoutTests/fast/layers/no-clipping-overflow-hidden-added-after-transition.html
+++ b/LayoutTests/fast/layers/no-clipping-overflow-hidden-added-after-transition.html
@@ -13,13 +13,13 @@ div {
}
.transformed {
- -webkit-transform: rotate(0deg) translate3d(0, 0, 0);
+ transform: rotate(0deg) translate3d(0, 0, 0);
-webkit-transition: -webkit-transform linear 0s;
background: green;
}
.transformed:hover {
- -webkit-transform: rotate(45deg) translate3d(0, 0, 0);
+ transform: rotate(45deg) translate3d(0, 0, 0);
}
</style>
</head>

Powered by Google App Engine
This is Rietveld 408576698