Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/css3/motion-path/combine-independent-anchor-expected.html |
| diff --git a/third_party/WebKit/LayoutTests/css3/motion-path/combine-independent-anchor-expected.html b/third_party/WebKit/LayoutTests/css3/motion-path/combine-independent-anchor-expected.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..4eb67e9b52bbbda75b7304daf0ec66cb1005b9a5 |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/css3/motion-path/combine-independent-anchor-expected.html |
| @@ -0,0 +1,18 @@ |
| +<!DOCTYPE html> |
| +<style> |
| +* { |
| + margin: 0; |
| + padding: 0; |
| +} |
| +span { |
|
alancutter (OOO until 2018)
2016/11/03 00:46:52
This should be display: inline-block.
Eric Willigers
2016/11/03 04:01:36
Done.
|
| + width: 100px; |
| + height: 100px; |
| +} |
| +#span2 { |
| + transform-origin: 20% 30%; |
| + transform: rotate(90deg) translate(-5px, 10px) translate(0px, 100px) rotate(90deg) translate(5px, -10px); |
| +} |
| +</style> |
| +<span>span1</div> |
| +<span id="span2">span2</div> |
| +<span>span3</div> |
|
alancutter (OOO until 2018)
2016/11/03 00:46:52
</span>
Eric Willigers
2016/11/03 04:01:36
Done.
|