| Index: third_party/WebKit/LayoutTests/paint/invalidation/compositing/should-not-clip-composited-overflow-scrolling-layer.html
|
| diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/compositing/should-not-clip-composited-overflow-scrolling-layer.html b/third_party/WebKit/LayoutTests/paint/invalidation/compositing/should-not-clip-composited-overflow-scrolling-layer.html
|
| index bf0d3ddafa38a707da483db3fed295fc1c83d1b8..53899e1a42c9a72793112132bf9a2c090ef741f5 100644
|
| --- a/third_party/WebKit/LayoutTests/paint/invalidation/compositing/should-not-clip-composited-overflow-scrolling-layer.html
|
| +++ b/third_party/WebKit/LayoutTests/paint/invalidation/compositing/should-not-clip-composited-overflow-scrolling-layer.html
|
| @@ -6,20 +6,20 @@ if (window.internals)
|
| function repaintTest() {
|
| document.getElementById('content').style.backgroundColor = 'green';
|
| var container = document.getElementById('container');
|
| - container.scrollLeft = 2000;
|
| - container.scrollTop = 2000;
|
| + container.scrollLeft = 500;
|
| + container.scrollTop = 400;
|
| }
|
| window.onload = runRepaintAndPixelTest;
|
| </script>
|
| <style>
|
| #container {
|
| - width: 500px;
|
| - height: 500px;
|
| + width: 400px;
|
| + height: 300px;
|
| overflow: scroll;
|
| }
|
| #content {
|
| - width: 5000px;
|
| - height: 5000px;
|
| + width: 1000px;
|
| + height: 1000px;
|
| background-color: red;
|
| }
|
| </style>
|
|
|