RESOLVED DUPLICATE of bug 303845303841
CSS cursor values (move, all-scroll, ew-resize, ns-resize) do not display the expected cursors in Safari 26.2 / Safari Technology Preview 233
https://bugs.webkit.org/show_bug.cgi?id=303841
Summary CSS cursor values (move, all-scroll, ew-resize, ns-resize) do not display the...
Alex
Reported 2025-12-09 07:51:37 PST
Several CSS cursor values do not display the expected cursors in Safari 26.2 and Safari Technology Preview 233. The following cursor values do not change the cursor appearance at all: cursor: move cursor: all-scroll cursor: ew-resize cursor: ns-resize At the same time, other cursor values such as pointer and grab work as expected. This behavior differs from Chrome and Firefox on the same system, where all of these cursor values display appropriate cursor shapes. STR: 1) Go to https://htmlfiddle.net in Safari 26.2 or Safari Technology Preview 233 on macOS. 2) Insert the following minimal HTML snippet: <!doctype html> <html> <head> <meta charset="utf-8"> <title>Cursor test matrix</title> <style> .item { width: 200px; padding: 16px; margin: 10px; border: 1px solid #aaa; background: #eef; font-family: sans-serif; } .pointer { cursor: pointer; } .grab { cursor: grab; } .move { cursor: move; } .allscroll { cursor: all-scroll; } .ew { cursor: ew-resize; } .ns { cursor: ns-resize; } </style> </head> <body> <div class="item pointer">cursor: pointer</div> <div class="item grab">cursor: grab</div> <div class="item move">cursor: move</div> <div class="item allscroll">cursor: all-scroll</div> <div class="item ew">cursor: ew-resize</div> <div class="item ns">cursor: ns-resize</div> </body> </html> 3) Hover the mouse cursor over each block one by one. Actual result : the cursor for move, all-scroll, ew-resize, ns-resize does not change. Expected result: Safari should display an appropriate cursor shape (consistent with the semantics of the value and with the behavior of other major browsers on the same platform)
Attachments
Alex
Comment 1 2025-12-09 08:18:15 PST
*** This bug has been marked as a duplicate of bug 303845 ***
Note You need to log in before you can comment on or make changes to this bug.