| Index: third_party/WebKit/LayoutTests/compositing/overflow/scaled-overflow.html
|
| diff --git a/third_party/WebKit/LayoutTests/compositing/overflow/scaled-overflow.html b/third_party/WebKit/LayoutTests/compositing/overflow/scaled-overflow.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..0c6d9896bcf18a7e94de2d3e063f74a5d805a494
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/compositing/overflow/scaled-overflow.html
|
| @@ -0,0 +1,33 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| + body {
|
| + background: black;
|
| + transform: scale(0.75);
|
| + transform-origin: top left;
|
| + }
|
| +
|
| + .scroller {
|
| + position: relative;
|
| + overflow: scroll;
|
| + width: 150px;
|
| + height: 150px;
|
| + background: white local;
|
| + }
|
| +
|
| + .b {
|
| + left: 1px;
|
| + top: 10px;
|
| + }
|
| +
|
| + .c {
|
| + left: 2px;
|
| + top: 20px;
|
| + }
|
| +
|
| + .spacer {
|
| + height: 400px;
|
| + }
|
| +</style>
|
| +<div class="scroller"><div class="spacer"></div></div>
|
| +<div class="scroller b"><div class="spacer"></div></div>
|
| +<div class="scroller c"><div class="spacer"></div></div>
|
|
|