| Index: LayoutTests/fast/scrolling/non-composited-scrolling-repaint-to-ancestor-backing-expected.html
|
| diff --git a/LayoutTests/fast/scrolling/non-composited-scrolling-repaint-to-ancestor-backing-expected.html b/LayoutTests/fast/scrolling/non-composited-scrolling-repaint-to-ancestor-backing-expected.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..648e1a6b02459c0f531b999ffbe50b5d862c952d
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/scrolling/non-composited-scrolling-repaint-to-ancestor-backing-expected.html
|
| @@ -0,0 +1,26 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| +#container {
|
| + overflow: scroll;
|
| + width: 400px;
|
| + height: 300px;
|
| +}
|
| +
|
| +#clipping {
|
| + height: 1000px;
|
| +}
|
| +
|
| +#clipped {
|
| + height: 10px;
|
| + border: solid 1px black;
|
| +}
|
| +</style>
|
| +<div id="container">
|
| + <div id="clipping">
|
| + <div>Lorem ipsum</div>
|
| + <div id="clipped"></div>
|
| + </div>
|
| +</div>
|
| +<script>
|
| + document.getElementById('container').scrollTop = 1000;
|
| +</script>
|
|
|