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

Unified Diff: LayoutTests/fast/layers/no-clipping-overflow-hidden-hardware-acceleration.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-hardware-acceleration.html
diff --git a/LayoutTests/fast/layers/no-clipping-overflow-hidden-hardware-acceleration.html b/LayoutTests/fast/layers/no-clipping-overflow-hidden-hardware-acceleration.html
index c22b15832f40047c819a5be2147ec3430ee10401..ec6a1dfe7abe6b25909d4cf016584eaf8d6b369d 100644
--- a/LayoutTests/fast/layers/no-clipping-overflow-hidden-hardware-acceleration.html
+++ b/LayoutTests/fast/layers/no-clipping-overflow-hidden-hardware-acceleration.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