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

Unified Diff: ManualTests/animation/animation-direction-reverse-timing-functions-hardware.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: ManualTests/animation/animation-direction-reverse-timing-functions-hardware.html
diff --git a/ManualTests/animation/animation-direction-reverse-timing-functions-hardware.html b/ManualTests/animation/animation-direction-reverse-timing-functions-hardware.html
index cf2b95bf38d31bf9c4fc40c1b4211721f4c85da5..db8573ec9bc4e5a86568ddd1fe71a1fa5f3c2520 100644
--- a/ManualTests/animation/animation-direction-reverse-timing-functions-hardware.html
+++ b/ManualTests/animation/animation-direction-reverse-timing-functions-hardware.html
@@ -43,19 +43,19 @@
}
.expected {
- -webkit-transform: translateX(100px);
+ transform: translateX(100px);
}
#normal .expected.delay_six_thirds {
- -webkit-transform: translateX(200px);
+ transform: translateX(200px);
}
#alternate .expected.delay_three_thirds {
- -webkit-transform: translateX(200px);
+ transform: translateX(200px);
}
#reverse .expected.delay_zero, #reverse .expected.delay_three_thirds {
- -webkit-transform: translateX(200px);
+ transform: translateX(200px);
}
#alternate-reverse .expected.delay_zero, #alternate-reverse .expected.delay_six_thirds {
- -webkit-transform: translateX(200px);
+ transform: translateX(200px);
}
#normal div {
@@ -72,8 +72,8 @@
}
@-webkit-keyframes move {
- from { -webkit-transform: translateX(100px); }
- to { -webkit-transform: translateX(200px); }
+ from { transform: translateX(100px); }
+ to { transform: translateX(200px); }
}
</style>
</head>
« no previous file with comments | « ManualTests/animated-gif-on-compositing-layer.html ('k') | ManualTests/animation/compositor-animation-delay.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698