-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Latest Mobile VO fails to read out responsive descriptions #117
Comments
Bummer - OK thanks for reporting @Nancy-Salpepi.
Can you please clarify, does that mean on iPadOS 17.5 some responses are spoken successfully? Can you give an example of the ones you do hear and the ones you don't hear for those sims? |
For RaP, when moving the hands it will say, "close to target" or similar, but it won't read out "hand on tick 4" or things like that when it should. |
OK, that is helpful thanks. It sounds like we are hearing the |
I just tried on iOS 15.0.2 and I heard alerts as expected in greenhouse-effect. Ill see if I an try a newer version. |
I was also able to test on 16.5 and confirmed alerts sound correct. |
@KatieWoe did the following test:
I am able to install iOS 17.5.1 on an iPad, I am doing that now to test. |
After updating to 17.5.1 I am observing this problem. |
If I remove this, the problem goes away. However, VoiceOver interrupts itself for every queued up aria-live=polite alert and we only hear the most recent information. utterance-queue/js/AriaLiveAnnouncer.ts Lines 234 to 242 in a2b10ee
If we can fix this, it will be in utterance-queue so transfering the issue there. |
<h1>Testing</h1>
<p id='alerter' aria-live='polite'></p>
<p id='alerter2' aria-live='polite'></p>
<script>
// alternate between two alert elements (similar to how UtteranceQueue works)
const alerter = document.getElementById( 'alerter' );
const alerter2 = document.getElementById( 'alerter2' );
let counter = 1;
window.setInterval( () => {
if ( counter % 2 === 0 ) {
alerter2.textContent = `This is a new alert that is quite long, will it be interrupted? ${counter}`;
}
else {
alerter.textContent = `This is a new alert that is quite long, will it be interrupted? ${counter}`;
}
counter++;
}, 1000 );
</script> |
The above commit improves the output on iOS VoiceOver. But it has a negative impact on MacOS VoiceOver. It breaks the queuing of Discussing with @Nancy-Salpepi and we think the best thing to do is to apply that change for iOS VoiceOver but NOT change MacOS VoiceOver. Note this will improve iOS VoiceOver but we will still miss a lot of alerts as they get interrupted. Done in 58282ac. We should discuss is this change is good enough and if it requires a maintenance release. EDIT: I noted in the planning slack channel that this issue, along with phetsims/scenery#1631, will require some maintenance time. I will work there to coordinate discussion and maintenance. |
Bummer! :( But glad you found a bit of an improvement. |
I think we need to reach out to apple to check on its support for ARIA-Live. |
I agree. The specification here (https://www.w3.org/TR/wai-aria-1.2/#aria-live) describes that polite alerts should queue. (Though to be fair, it leaves room for interpretation). #117 (comment) demonstrates that they do not. That is sufficient for a bug report, which we can submit, but we have never received a response from Apple's Feedback Assistant. |
Ok, I sent an email with the question jesse suggested:
|
I heard back from Chris Fleizach. They would very much appreciate a webkit bug report.
|
Making a note that we still see this problem with Mobile VO on iPadOS 18 |
@jessegreenberg mentioned we can follow-up on this issue and submit an issue to webkit as we work on description for pH Scale: Basics. |
Test device
iPad 9th generation
Operating System
iPadOS 17.5.1
Browser
Safari
Problem description
Seen while testing phetsims/qa#1086 but also happens in published:
Mobile VO no longer reads out all the responses when an action is taken (a button is pressed or a slider is moved). @KatieWoe confirmed that she is also seeing the same thing with her iPad and iPadOS 17.5. It seems like Apple broke something in 17.5.
For example, in Greenhouse Effect, go to the Waves Screen and press Start Sunlight -- you will not hear "warming" or any temperature values. When using the concentration slider it only indicates the level of greenhouse gases. The same thing happens in the published version.
I also get no responses with Friction in published (and main)--it doesn't say that the book is grabbed or released or give any description about what is happening to the atoms as the books are rubbed together.
Published GFLB and RAP give some responses.
The text was updated successfully, but these errors were encountered: