Accessibility VoiceOver reads static text as clickable
Lately we noticed that VoiceOver (OS Sequoia) reads static text as clickable, despite it's not a button or link. Observed in Chrome and Firefox, but not in Safari browser. Why that happens? What does 'clickable' mean in this context?
We experimented with an almost empty html file without any styles or scripts and every element is still voiced as clickable:
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div role="presentation">presentation</div>
<div role="none">none</div>
<div>div</div>
<span>span</span>
</body>
</html>
MacBook Pro (2021)