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/test_group_hittest-1.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/test_group_hittest-1.html')
-rw-r--r-- | gfx/layers/apz/test/mochitest/test_group_hittest-1.html | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/gfx/layers/apz/test/mochitest/test_group_hittest-1.html b/gfx/layers/apz/test/mochitest/test_group_hittest-1.html new file mode 100644 index 0000000000..34bf245d6c --- /dev/null +++ b/gfx/layers/apz/test/mochitest/test_group_hittest-1.html @@ -0,0 +1,59 @@ +<!DOCTYPE HTML> +<html> +<head> + <meta charset="utf-8"> + <title>Various hit-testing tests that spawn in new windows - Part 1</title> + <script src="/tests/SimpleTest/SimpleTest.js"></script> + <script type="application/javascript" src="apz_test_utils.js"></script> + <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/> + <script type="application/javascript"> + +var prefs = [ + // Turn off displayport expiry so that we don't miss failures where the + // displayport is set and then expires before we get around to doing the + // hit-test inside the activated scrollframe. + ["apz.displayport_expiry_ms", 0], + // Always layerize the scrollbar track, so as to get consistent results + // across platforms. Eventually we should probably get rid of this and make + // the tests more robust in terms of testing all the different cross-platform + // variations. + ["layout.scrollbars.always-layerize-track", true], + // We need this pref to allow the synthetic mouse events to propagate to APZ, + // and to allow the MozMouseHittest event in particular to be dispatched to + // APZ as a MouseInput so the hit result is recorded. + ["test.events.async.enabled", true], + // Turns on APZTestData logging which we use to obtain the hit test results. + ["apz.test.logging_enabled", true], +]; + +var overscroll_prefs = [...prefs, + ["apz.overscroll.enabled", true], + ["apz.overscroll.test_async_scroll_offset.enabled", true], + ]; + +var subtests = [ + {"file": "helper_hittest_basic.html", "prefs": prefs}, + {"file": "helper_hittest_fixed_in_scrolled_transform.html", "prefs": prefs}, + {"file": "helper_hittest_float_bug1434846.html", "prefs": prefs}, + {"file": "helper_hittest_float_bug1443518.html", "prefs": prefs}, + {"file": "helper_hittest_checkerboard.html", "prefs": prefs}, + {"file": "helper_hittest_backface_hidden.html", "prefs": prefs}, + {"file": "helper_hittest_touchaction.html", "prefs": prefs}, + {"file": "helper_hittest_nested_transforms_bug1459696.html", "prefs": prefs}, + {"file": "helper_hittest_sticky_bug1478304.html", "prefs": prefs}, + {"file": "helper_hittest_clipped_fixed_modal.html", "prefs": prefs}, +]; + +if (isApzEnabled()) { + SimpleTest.waitForExplicitFinish(); + window.onload = function() { + runSubtestsSeriallyInFreshWindows(subtests) + .then(SimpleTest.finish, SimpleTest.finishWithFailure); + }; +} + + </script> +</head> +<body> +</body> +</html> |