diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /gfx/layers/apz/test/mochitest/helper_dommousescroll.html | |
parent | Initial commit. (diff) | |
download | firefox-upstream.tar.xz firefox-upstream.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'gfx/layers/apz/test/mochitest/helper_dommousescroll.html')
-rw-r--r-- | gfx/layers/apz/test/mochitest/helper_dommousescroll.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gfx/layers/apz/test/mochitest/helper_dommousescroll.html b/gfx/layers/apz/test/mochitest/helper_dommousescroll.html new file mode 100644 index 0000000000..390db367f5 --- /dev/null +++ b/gfx/layers/apz/test/mochitest/helper_dommousescroll.html @@ -0,0 +1,33 @@ +<head> + <meta name="viewport" content="width=device-width; initial-scale=1.0"> + <title>Test that Direct Manipulation generated pan gesture events generate DOMMouseScroll events with reasonable line scroll amounts</title> + <script src="apz_test_native_event_utils.js"></script> + <script src="apz_test_utils.js"></script> + <script src="/tests/SimpleTest/paint_listener.js"></script> +</head> +<body> + <script type="application/javascript"> +async function test() { + let numLines = 0; + window.addEventListener("DOMMouseScroll", function (event) { numLines += event.detail; }, { passive: false }); + let promise = new Promise(resolve => { + window.addEventListener("DOMMouseScroll", resolve, { passive: false }); + }); + await promiseApzFlushedRepaints(); + + await synthesizeTouchpadPan(20, 100, [0,0,0], [10,100,0], {}); + + await waitToClearOutAnyPotentialScrolls(window); + await promise; + + info(numLines + " numLines"); + ok(numLines < 10, "not too many lines"); + ok(numLines > 0, "some lines"); +} + +waitUntilApzStable() +.then(test) +.then(subtestDone, subtestFailed); + + </script> +</body> |