summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/repaint/background-attachment-local-repaint-expected.html
blob: 08cbbda1761f49a0c5a5eddf02366d1f56330be6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<style>
#container {
    overflow: scroll;
    width: 500px;
    height: 400px;

    background-attachment: local;
    background-image: linear-gradient(black, white);
}

#bloat {
    position: relative;
    left: 0;
    top: 10000px;
    width: 1px;
    height: 1px;
}
</style>
<div id="container">
    <div id="bloat"></div>
</div>
This test verifies a overflow clip container with background-attachment:local correctly repaints when its overflow changes size without scrolling.