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

Unified Diff: LayoutTests/animations/timing-properties-do-not-trigger-animation.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/animations/timing-properties-do-not-trigger-animation.html
diff --git a/LayoutTests/animations/timing-properties-do-not-trigger-animation.html b/LayoutTests/animations/timing-properties-do-not-trigger-animation.html
index baa2c995a017a05a07244911804c010d0c86f4d2..2d5c68f7a190ac922d23ed21539fe09c4c66287c 100644
--- a/LayoutTests/animations/timing-properties-do-not-trigger-animation.html
+++ b/LayoutTests/animations/timing-properties-do-not-trigger-animation.html
@@ -31,12 +31,12 @@
animation-timing-function: linear;
}
@-webkit-keyframes test {
- from { -webkit-transform: translateX(100px); }
- to { -webkit-transform: translateX(300px); }
+ from { transform: translateX(100px); }
+ to { transform: translateX(300px); }
}
@keyframes test {
- from { -webkit-transform: translateX(100px); }
- to { -webkit-transform: translateX(300px); }
+ from { transform: translateX(100px); }
+ to { transform: translateX(300px); }
}
</style>
<script type="text/javascript">
« no previous file with comments | « LayoutTests/animations/simultaneous-start-transform.html ('k') | LayoutTests/animations/transition-and-animation-1.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698