summaryrefslogtreecommitdiffstats
path: root/dom/events/test/test_auxclick_autoscroll_off.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /dom/events/test/test_auxclick_autoscroll_off.html
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/events/test/test_auxclick_autoscroll_off.html')
-rw-r--r--dom/events/test/test_auxclick_autoscroll_off.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/dom/events/test/test_auxclick_autoscroll_off.html b/dom/events/test/test_auxclick_autoscroll_off.html
new file mode 100644
index 0000000000..5dd7b95920
--- /dev/null
+++ b/dom/events/test/test_auxclick_autoscroll_off.html
@@ -0,0 +1,31 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>Test auxclick works when general.autoScroll is off</title>
+<script src="/tests/SimpleTest/EventUtils.js"></script>
+<script src="/tests/SimpleTest/SimpleTest.js"></script>
+<link rel="stylesheet" href="/tests/SimpleTest/test.css" />
+
+<body style="height: 110vh;">
+ <button id="target">button</button>
+</body>
+<script>
+ SimpleTest.waitForExplicitFinish();
+ function test() {
+ const target = document.getElementById("target");
+ target.addEventListener('auxclick', (e) => {
+ ok(true, "auxclick should work");
+ SimpleTest.finish();
+ });
+
+ synthesizeMouseAtCenter(target, { type: "mousedown", button: 1 });
+ synthesizeMouseAtCenter(target, { type: "mouseup", button: 1 });
+ }
+
+ SpecialPowers.pushPrefEnv({"set": [
+ ["general.autoScroll", false],
+ ]}, function() {
+ SimpleTest.waitForFocus(function() {
+ test();
+ });
+ });
+</script>