Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/css3/motion-path/combine-independent-anchor-transform.html |
| diff --git a/third_party/WebKit/LayoutTests/css3/motion-path/combine-independent-anchor-transform.html b/third_party/WebKit/LayoutTests/css3/motion-path/combine-independent-anchor-transform.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..706782bd09ded708f601b09f77bf4a2a61c5a915 |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/css3/motion-path/combine-independent-anchor-transform.html |
| @@ -0,0 +1,21 @@ |
| +<!DOCTYPE html> |
| +<style> |
| +* { |
| + margin: 0; |
| + padding: 0; |
| +} |
| +span { |
| + width: 100px; |
| + height: 100px; |
| +} |
| +#span2 { |
| + rotate: 90deg; |
| + offset: path('m 0 0 v 200') 100px auto; |
|
alancutter (OOO until 2018)
2016/11/01 05:45:34
There are quite a few things going on here, we sho
Eric Willigers
2016/11/01 06:34:40
transform-origin is used for the independent trans
|
| + offset-anchor: 15px 40px; |
| + transform-origin: 20px 30px; |
| + transform: scale(2) rotate(90deg); |
| +} |
| +</style> |
| +<span>span1</div> |
| +<span id="span2">span2</div> |
| +<span>span3</div> |