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

Unified Diff: LayoutTests/compositing/layer-creation/overlap-animation-container.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-container.html
diff --git a/LayoutTests/compositing/layer-creation/overlap-animation-container.html b/LayoutTests/compositing/layer-creation/overlap-animation-container.html
index e21503ef21357d31e5099d2aec55fbecb41fabc2..1bb2cbbf47e2a61e9a2c4b7b8310b448925bb772 100644
--- a/LayoutTests/compositing/layer-creation/overlap-animation-container.html
+++ b/LayoutTests/compositing/layer-creation/overlap-animation-container.html
@@ -21,11 +21,11 @@
}
.force-layer {
- -webkit-transform: translateZ(-1px);
+ transform: translateZ(-1px);
}
.rotate-45deg {
- -webkit-transform: rotate(45deg);
+ transform: rotate(45deg);
}
.yellow {
@@ -46,8 +46,8 @@
}
@-webkit-keyframes translate1 {
- from { -webkit-transform: translate(0px, -110px); }
- to { -webkit-transform: translate(0px, 700px); }
+ from { transform: translate(0px, -110px); }
+ to { transform: translate(0px, 700px); }
}
</style>
<script>

Powered by Google App Engine
This is Rietveld 408576698