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

Unified Diff: LayoutTests/transitions/transition-end-event-multiple-04.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/transition-end-event-multiple-04.html
diff --git a/LayoutTests/transitions/transition-end-event-multiple-04.html b/LayoutTests/transitions/transition-end-event-multiple-04.html
index 623b1a1696f0d8437a1b0710309f18c49a89259f..3123ab5f1c6b4b2d80e0203a9bdd80ed9d2b2bd8 100644
--- a/LayoutTests/transitions/transition-end-event-multiple-04.html
+++ b/LayoutTests/transitions/transition-end-event-multiple-04.html
@@ -8,27 +8,27 @@
width: 100px;
margin: 10px;
background-color: blue;
- -webkit-transform: translate(0);
+ transform: translate(0);
-webkit-transition-property: -webkit-transform;
alancutter (OOO until 2018) 2014/10/14 05:13:49 Need to change the transition property target as w
-webkit-transition-duration: 0.5s;
}
.box1 {
- -webkit-transform: translate(50px);
+ transform: translate(50px);
}
.box2 {
- -webkit-transform: translate(50px) scale(1.05);
+ transform: translate(50px) scale(1.05);
-webkit-transition-duration: 0.55s;
}
.box3 {
- -webkit-transform: translate(0); /* same as default */
+ transform: translate(0); /* same as default */
-webkit-transition-duration: 0.3s;
}
.box4 {
- -webkit-transform: translate(100px);
+ transform: translate(100px);
-webkit-transition-duration: 0.4s;
}

Powered by Google App Engine
This is Rietveld 408576698