summaryrefslogtreecommitdiffstats
path: root/gfx/layers/apz/test/mochitest/helper_drag_bug1794590.html
blob: 71fd365a84858e3501616bac4e8b9bcc92666460 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE HTML>
<html>

<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width; initial-scale=1.0">
    <title>Test for bug 1794590</title>
    <script type="application/javascript" src="apz_test_native_event_utils.js"></script>
    <script type="application/javascript" src="apz_test_utils.js"></script>
    <script src="/tests/SimpleTest/paint_listener.js"></script>
    <script type="text/javascript">

        const utils = SpecialPowers.getDOMWindowUtils(window);

        async function test() {
            // Zoom in. This is part of the bug 1794590 STR.
            let resolution = 3.0;
            utils.setResolutionAndScaleTo(resolution);
            await promiseApzFlushedRepaints();

            let scrollPromise = new Promise(resolve => {
                subframe.addEventListener("scroll", resolve, { once: true });
            });

            var dragFinisher = await promiseVerticalScrollbarDrag(subframe, 20);
            if (!dragFinisher) {
                ok(true, "No scrollbar, can't do this test");
                return;
            }

            // the events above might be stuck in APZ input queue for a bit until the
            // layer is activated, so we wait here until the scroll event listener is
            // triggered.
            await scrollPromise;

            await dragFinisher();

            // Flush everything just to be safe
            await promiseOnlyApzControllerFlushed();

            ok(subframe.scrollTop > 0, "Scrollbar drag resulted in a scroll position of " + subframe.scrollTop);
        }

        waitUntilApzStable()
            .then(test)
            .then(subtestDone, subtestFailed);

    </script>
    <style>
        #subframe {
            width: 200px;
            height: 100px;
            margin: 100px;
            background-color: cyan;
            overflow: scroll;
            white-space: pre;
        }
        #content {
            width: 200px;
            height: 200px;
            background: linear-gradient(green, blue);
        }
    </style>
</head>

<body>
    <div id="subframe">
        <div id="content"></div>>
    </div>
</body>

</html>