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

Unified Diff: LayoutTests/fast/css/transform-default-parameter.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/fast/css/transform-default-parameter.html
diff --git a/LayoutTests/fast/css/transform-default-parameter.html b/LayoutTests/fast/css/transform-default-parameter.html
index eab6b0bf0b638cc28bf6df59ee4a5ce8d0ba7cb5..6c4b2b027fc74a6a3320d4058b8ca20b05d4ec32 100644
--- a/LayoutTests/fast/css/transform-default-parameter.html
+++ b/LayoutTests/fast/css/transform-default-parameter.html
@@ -17,21 +17,21 @@
top: 100px;
left: 100px;
background-color: blue;
- -webkit-transform: translate(400px); // this should evaluate as 400px, 0px
+ transform: translate(400px); // this should evaluate as 400px, 0px
}
#box2 {
top: 500px;
left: 500px;
background-color: green;
- -webkit-transform: translate3d(0px, 0px, -1px);
+ transform: translate3d(0px, 0px, -1px);
}
#box3 {
top: 100px;
left: 500px;
background-color: red;
- -webkit-transform: translate3d(0px, 0px, -1px);
+ transform: translate3d(0px, 0px, -1px);
}
</style>

Powered by Google App Engine
This is Rietveld 408576698