summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/compositing/geometry/geometry-map-scroll-during-layout-assertion.html
blob: 9e58b129ef64a87034970fc4594996710c0a1537 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
    <style>
        #wpadminbar {
            height: 28px;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            min-width: 600px;
            z-index: 99999;
            background-color: gray;
        }
        
        #overflow {
            overflow: scroll;
            height: 300px;
        }
        
        #contents {
            height: 500px;
            background-color: green;
        }
    </style>
    <script>
        if (window.testRunner)
            testRunner.dumpAsText();

        function doTest()
        {
            document.getElementById('overflow').scrollTop = 200;
            var contents = document.getElementById('contents');
            contents.style.height = '200' + 'px';
        }
        window.addEventListener('load', doTest, false);
    </script>
</head>
<body>
    <p>This test should not hit an assertion in debug builds.</p>
    <div id="wpadminbar" class="" role="navigation"></div>
    <div id="overflow" style="width: 430px; margin-left: 100px; margin-top: 100px;">
        <div id="contents">
        </div>
    </div>

</body>
</html>