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

Unified Diff: LayoutTests/animations/matrix-anim.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/matrix-anim.html
diff --git a/LayoutTests/animations/matrix-anim.html b/LayoutTests/animations/matrix-anim.html
index ece50e2e9857339201bc16c1c9de3d5862b2fcab..2a1c54305588a06706fe1e89815cd709b59b6905 100644
--- a/LayoutTests/animations/matrix-anim.html
+++ b/LayoutTests/animations/matrix-anim.html
@@ -15,8 +15,8 @@
-webkit-animation-name: "anim";
}
@-webkit-keyframes "anim" {
- from { -webkit-transform: matrix(0.707, -0.707, 0.707, 0.707, 0, 0); }
- to { -webkit-transform: matrix(0.707, 0.707, -0.707, 0.707, 0, 0); }
+ from { transform: matrix(0.707, -0.707, 0.707, 0.707, 0, 0); }
+ to { transform: matrix(0.707, 0.707, -0.707, 0.707, 0, 0); }
}
</style>
<script src="resources/animation-test-helpers.js" type="text/javascript" charset="utf-8"></script>

Powered by Google App Engine
This is Rietveld 408576698