Rotation and wheel click are separate inputs
Turning the wheel produces `wheel` events. Pressing it commonly produces logical middle-button mouse events. Testing one does not establish that the other works, and remapping can change the logical button.
How to use the Middle Mouse Button Test
Place the pointer on the target
Do not click a link or another part of the page; default middle-button behavior is contained only on the large target.
Press and release normally
Use several deliberate clicks with a clear pause, then try a held press to compare the recorded duration.
Repeat before interpreting
Compare mousedown, mouseup, and auxclick counts. Reset and retry if one sequence looks incomplete or repeated.
How the middle mouse button test works
The browser’s `MouseEvent.button` value 1 represents the logical auxiliary or middle button. The middle mouse button test listens for `mousedown` to start a press, `mouseup` to finish it, and `auxclick` to confirm a completed non-primary activation. Press duration is the elapsed time between a matching down and up. The most recent event and local clock display help you verify sequence without collecting screen coordinates.
A wheel click test uses a dedicated target because browsers often assign middle click to autoscroll, opening a link in a new tab, or another platform behavior. Default handling is prevented only inside that target. The site never installs a window-level middle-button blocker, so the rest of the browser remains unaffected.
button and buttons describe different things
`button` identifies which logical button changed for a mouse event. `buttons` is a bitmask describing buttons currently held during an event. This tool checks `button === 1` because it is recording middle-button transitions. A normal `click` event is not enough: browsers use `auxclick` for completed non-primary clicks, and press/release events are needed to measure duration or see an incomplete sequence.
Logical does not guarantee physical location. Operating-system settings, mouse utilities, accessibility software, games, and per-application profiles can remap a side button to middle click or map a wheel press to another command. The mouse button 1 test reports the browser mapping it receives, not the switch position inside the device.
Check missed clicks without overcounting
Make ten deliberate wheel clicks with a comfortable pause. Compare down, up, and completed counts. A missing release can occur if the pointer leaves the target or the page loses focus during the press, so repeat before treating it as a device pattern. Then try another browser or application and keep the same device profile.
The middle click test marks a possible repeat only when completed activations arrive within a short, documented time window. That rule describes closely spaced events; it does not prove switch bounce or a double-click defect. Fast intentional clicking can trigger the same candidate. Reset, click more slowly, and see whether the pattern persists.
Browser defaults and remapping
Middle click may enable autoscroll on a page, paste selected text on some systems, close a tab, or open a link in a background tab. Those defaults depend on context. The middle mouse button test removes the expected interference only from its target, which is why testing on arbitrary page text may produce a different visible action even when the logical event is present.
If no button-1 event appears, inspect official mouse software and system button assignments first. Disable per-application profiles temporarily only if you can restore them. Test another application that visibly supports middle click. If a side button produces button 1 instead, remapping is the likely explanation at the browser level, though this page cannot identify which layer made the change.
Safe troubleshooting for a wheel press
Check whether rotation still works because it is separate from pressing. Reconnect the device, review battery or wireless conditions, and try another supported port or connection. Update official drivers only from the manufacturer or operating-system provider. For external cleaning, disconnect power and follow the manual; never drip cleaner through the wheel opening.
If repeat tests across devices and applications show missing or closely spaced logical events, contact support or a qualified repairer. Do not dismantle a mouse under warranty based on this wheel click test. The browser cannot inspect switch wear, internal contamination, solder joints, or firmware and cannot issue a repair or warranty conclusion.
Middle Mouse Button Test questions
Why does middle click open a new tab elsewhere?
That is a common browser default for links. The test target prevents the default only within its own boundary so the event sequence can be observed.
What press duration is normal?
There is no universal duration. The value mainly helps compare your own deliberate presses and find incomplete sequences.
Does a repeat candidate prove switch bounce?
No. It only means completed events were closely spaced. Fast intentional clicking or software behavior can produce the same observation.
Why is my side button counted as middle?
Your system or mouse software may map that physical button to logical button 1. Check the active profile and official button settings.