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

Unified Diff: LayoutTests/css3/calc/transforms-translate-expected.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/css3/calc/transforms-translate-expected.html
diff --git a/LayoutTests/css3/calc/transforms-translate-expected.html b/LayoutTests/css3/calc/transforms-translate-expected.html
index b5aa291f127ec560b058fccf5d80999e747c3876..f80f9374fb3d65b31940ff7cad49ea9d9952a5da 100644
--- a/LayoutTests/css3/calc/transforms-translate-expected.html
+++ b/LayoutTests/css3/calc/transforms-translate-expected.html
@@ -8,13 +8,13 @@
}
#translatex {
- -webkit-transform: translatex(60px);
+ transform: translatex(60px);
}
#translatey {
- -webkit-transform: translatey(35px);
+ transform: translatey(35px);
}
#translatez {
- -webkit-transform: perspective(500px) translatez(100px);
+ transform: perspective(500px) translatez(100px);
}
</style>
<div id="translatex">translate x</div>

Powered by Google App Engine
This is Rietveld 408576698