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

Unified Diff: LayoutTests/animations/animation-matrix-negative-scale-unmatrix.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/animation-matrix-negative-scale-unmatrix.html
diff --git a/LayoutTests/animations/animation-matrix-negative-scale-unmatrix.html b/LayoutTests/animations/animation-matrix-negative-scale-unmatrix.html
index e93acab6c364c1c535ab1f0d4ef397ad19d78ebd..4075931809835716db87607f9b18c7b522c131cf 100644
--- a/LayoutTests/animations/animation-matrix-negative-scale-unmatrix.html
+++ b/LayoutTests/animations/animation-matrix-negative-scale-unmatrix.html
@@ -17,8 +17,8 @@
}
@-webkit-keyframes anim {
- from { -webkit-transform: matrix(1, 0, 0, -1, 0, 0); }
- to { -webkit-transform: matrix(1, 0, 0, 1, 0, 0); }
+ from { transform: matrix(1, 0, 0, -1, 0, 0); }
+ to { transform: matrix(1, 0, 0, 1, 0, 0); }
}
</style>
<script type="text/javascript" charset="utf-8">

Powered by Google App Engine
This is Rietveld 408576698