I am using the mac default screen reader.
I am expecting the screen reader to read the text and aria-label as is.
But instead it reads out group twice. It seems to read out group whenever aria-label is used.
But why? This is not a group and believe this is causing confusion for the person listening to it.
Anyway I can turn off the screen reader from saying group
?
Tried adding role='text' which doesn't make a difference.
This is the html
<!DOCTYPE html>
<html>
<body>
<p>
Some text <strike aria-label="This used to cost">$1000</strike> <span aria-label="now it costs">2000</span> some ending text
</p>
</body>
</html>
I am expecting it to read out:
Some text This used to cost $1000 now it costs 2000 some ending text
.
But instead it reads out the following where it adds group
twice.
Some text This used to cost, group
$1000 now it costs group
2000 some ending text
` isn't an HTML element. Is there a reason you aren't using [`– Sean Mar 10 '23 at 00:23`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/del)?