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

Unified Diff: LayoutTests/transforms/current-transformation-matrix.html

Issue 1220793011: CSS Motion Path: Centre transform-origin on the path (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: current-transformation-matrix Created 5 years, 6 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/transforms/current-transformation-matrix.html
diff --git a/LayoutTests/transforms/combine-transforms-properties-motion-path.html b/LayoutTests/transforms/current-transformation-matrix.html
similarity index 71%
copy from LayoutTests/transforms/combine-transforms-properties-motion-path.html
copy to LayoutTests/transforms/current-transformation-matrix.html
index 20eb0ca770019d405e66e730d972f4cae3b02304..ff1fd40cfd713372361200d6e9251fa40c24a3fc 100644
--- a/LayoutTests/transforms/combine-transforms-properties-motion-path.html
+++ b/LayoutTests/transforms/current-transformation-matrix.html
@@ -13,11 +13,12 @@ div {
translate: 200px 10px;
rotate: 90deg;
scale: 1 2;
- motion: path("m 0 0 v -20 h 20") 0rad 100%;
+ motion: path("m 0 0 v -30 h 40") 0rad 100%;
+ transform: scale(3, 4);
}
#expected {
background-color: green;
- transform: translate(240px, 30px) rotate(90deg) scale(1, 2);
+ transform: translate(200px, 10px) rotate(90deg) scale(1, 2) translate(-10px, -80px) scale(3, 4);
}
</style>

Powered by Google App Engine
This is Rietveld 408576698