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

Unified Diff: ManualTests/animate-none.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
« no previous file with comments | « ManualTests/animate-duration.html ('k') | ManualTests/animated-gif-on-compositing-layer.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ManualTests/animate-none.html
diff --git a/ManualTests/animate-none.html b/ManualTests/animate-none.html
index 4cb2c8b4fc3d2f95132bb4d9ef3e1209262d0ed7..f3e7b229f295772604a48005bc18f51e7bbfd47d 100644
--- a/ManualTests/animate-none.html
+++ b/ManualTests/animate-none.html
@@ -20,10 +20,10 @@
@-webkit-keyframes 'fail' {
from {
- -webkit-transform: rotate(-90deg);
+ transform: rotate(-90deg);
}
to {
- -webkit-transform: rotate(90deg);
+ transform: rotate(90deg);
}
}
@@ -39,10 +39,10 @@
@-webkit-keyframes 'sway1' {
from {
- -webkit-transform: translate(0, 0);
+ transform: translate(0, 0);
}
to {
- -webkit-transform: translate(200px, 0);
+ transform: translate(200px, 0);
}
}
@@ -58,10 +58,10 @@
@-webkit-keyframes 'sway2' {
from {
- -webkit-transform: translate(0px, 0);
+ transform: translate(0px, 0);
}
to {
- -webkit-transform: translate(200px, 0);
+ transform: translate(200px, 0);
}
}
@@ -77,10 +77,10 @@
@-webkit-keyframes 'sway3' {
from {
- -webkit-transform: translate(0px, 0);
+ transform: translate(0px, 0);
}
to {
- -webkit-transform: translate(200px, 0);
+ transform: translate(200px, 0);
}
}
@@ -116,10 +116,10 @@
@-webkit-keyframes 'sway6' {
from {
- -webkit-transform: translate(0px, 0);
+ transform: translate(0px, 0);
}
to {
- -webkit-transform: translate(200px, 0);
+ transform: translate(200px, 0);
}
}
@@ -135,10 +135,10 @@
/* set up animation that should never be run */
@-webkit-keyframes none {
from {
- -webkit-transform: translate(200px, 0) rotate(-90deg);
+ transform: translate(200px, 0) rotate(-90deg);
}
to {
- -webkit-transform: translate(0px, 0) rotate(90deg);
+ transform: translate(0px, 0) rotate(90deg);
}
}
« no previous file with comments | « ManualTests/animate-duration.html ('k') | ManualTests/animated-gif-on-compositing-layer.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698