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

Unified Diff: LayoutTests/compositing/layer-creation/overlap-animation-clipping.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/compositing/layer-creation/overlap-animation-clipping.html
diff --git a/LayoutTests/compositing/layer-creation/overlap-animation-clipping.html b/LayoutTests/compositing/layer-creation/overlap-animation-clipping.html
index 714412e80cdaa5ba6af94de02b0771735072e028..c9c70f5bb2fa588f9b0fb14bb6020128a0f5af33 100644
--- a/LayoutTests/compositing/layer-creation/overlap-animation-clipping.html
+++ b/LayoutTests/compositing/layer-creation/overlap-animation-clipping.html
@@ -23,7 +23,7 @@
}
.force-layer {
- -webkit-transform: translateZ(1px);
+ transform: translateZ(1px);
}
.yellow {
@@ -43,13 +43,13 @@
}
@-webkit-keyframes translate1 {
- from { -webkit-transform: translate(0px, -110px); }
- to { -webkit-transform: translate(0px, 590px); }
+ from { transform: translate(0px, -110px); }
+ to { transform: translate(0px, 590px); }
}
@-webkit-keyframes translate2 {
- from { -webkit-transform: translate(0px, -220px); }
- to { -webkit-transform: translate(0px, 110px); }
+ from { transform: translate(0px, -220px); }
+ to { transform: translate(0px, 110px); }
}
</style>
<script>

Powered by Google App Engine
This is Rietveld 408576698