| Index: third_party/WebKit/LayoutTests/css3/filters/filter-region-transformed-composited-child-expected.html
|
| diff --git a/third_party/WebKit/LayoutTests/css3/filters/filter-region-transformed-child-expected.html b/third_party/WebKit/LayoutTests/css3/filters/filter-region-transformed-composited-child-expected.html
|
| similarity index 69%
|
| copy from third_party/WebKit/LayoutTests/css3/filters/filter-region-transformed-child-expected.html
|
| copy to third_party/WebKit/LayoutTests/css3/filters/filter-region-transformed-composited-child-expected.html
|
| index c0a9fbfc2fa2457fc03f42f887aa0ac2865869df..1a8ab40d20185688033d1d71726eea43eb443229 100644
|
| --- a/third_party/WebKit/LayoutTests/css3/filters/filter-region-transformed-child-expected.html
|
| +++ b/third_party/WebKit/LayoutTests/css3/filters/filter-region-transformed-composited-child-expected.html
|
| @@ -12,13 +12,23 @@
|
| </svg>
|
| <style>
|
| div {
|
| - display: inline-block;
|
| + position: absolute;
|
| filter: url(#filter);
|
| background-color: gray;
|
| width: 50px;
|
| height: 50px;
|
| - transform: translate(25px, 25px) scale(2);
|
| - -webkit-transform: translate(25px, 25px) scale(2);
|
| + will-change: transform;
|
| +}
|
| +.p1 {
|
| + left: 50px;
|
| + top: 50px;
|
| + transform: translate(0px, 25px);
|
| +}
|
| +.p2 {
|
| + left: 150px;
|
| + top: 50px;
|
| + transform: translate(0px, -25px);
|
| }
|
| </style>
|
| -<div></div>
|
| +<div class="p1"></div>
|
| +<div class="p2"></div>
|
|
|