Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/paint/invalidation/invalidation-with-scale-transform.html |
| diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/invalidation-with-scale-transform.html b/third_party/WebKit/LayoutTests/paint/invalidation/invalidation-with-scale-transform.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..fa580bb5544beec91522af8cf7b0ca7e80617dba |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/paint/invalidation/invalidation-with-scale-transform.html |
| @@ -0,0 +1,14 @@ |
| +<!doctype HTML> |
| +<script src="../../fast/repaint/resources/text-based-repaint.js"></script> |
| +<div class="zoom-div" id="zoom" style="transform: scale(0.9); left: 35.5px; height: 45.5px"> |
| + <div id="target" style="position: absolute; left: 41.5px; top: 67.3px; width: 100px; height: 100px; background: lightgray"> |
| + </div> |
|
pdr.
2016/06/24 22:48:41
Nit: indentation
chrishtr
2016/06/24 22:50:14
Done.
|
| + </div> |
| +</div> |
| +<script> |
| +onload = runRepaintAndPixelTest; |
| +function repaintTest() { |
| + target.style.left = '42.1px'; |
| + target.style.top = '67.3px'; |
| +} |
| +</script> |