@Georgiana_FH
Do you mean `off`?
Because if so, you might have those behaviors backward?
Asking because I am curious of the use case where you are using that value versus removing the property.
Accessibility of web content requires semantic information about widgets, structures, and behaviors, in order to allow assistive technologies to convey appropriate information to persons with disabilities. This specification provides an ontology of roles, states, and properties that define accessible user interface elements and can be used to improve the accessibility and interoperability of web content and applications. These semantics are designed to allow an author to properly convey user interface behaviors and structural information to assistive technologies in document-level markup. This version adds features new since WAI-ARIA 1.1 [wai-aria-1.1] to improve interoperability with assistive technologies to form a more consistent accessibility model for [HTML] and [SVG2]. This specification complements both [HTML] and [SVG2].
@aardrian @matuzo Sorry, I'll edit it, yes, it's off.
Oh, you're right. I'm really confused. No, I don't have the behavior reversed. I know that in 2023 I was working on a carousel that only sent aria-live messages when you had focus in the region, and at that time aria-live="off" was supposed to be for that, but it wasn't working; it was actually deactivating the regions. +
@Georgiana_FH I haven’t tested support for `off` (because typically you don't want to toggle a region on and off owing to how platform accessibility APIs recognize it) but at the very least you can use this to confirm some of your browser pairings: https://adrianroselli.com/2026/01/live-region-support.html

This post does not discuss whether live regions are good, nor is it a post about the best way to use them. This post only covers how they are exposed to the audience who experiences them — screen reader users. Written by a non-screen-reader user. If you’re here because your…
@Georgiana_FH
A live region would be announced regardless of where screen reader focus is. Ideally, a live region would never get focus (nor get the screen reader cursor).
An element’s accessible name changing is a different challenge (and inconsistently exposed).
From your description, I have too many questions to try to sort it out in Masto posts, but you may want to read this post for broader live region use:
https://tetralogical.com/blog/2024/05/01/why-are-my-live-regions-not-working/

Live regions have a reputation for being "flaky" and inconsistent. While this can be attributed in part to shortcomings in current implementations, the problem can also be caused by developers misunderstanding how live regions are intended to work.
@inovegil
Good to know. I may update my tests to see how `off` is exposed. I’m so used to doing it without, that I forget others use it. So that’s a limitation of my imagination.
If I find issues, then bug filing!
FWIW, I’m on the ARIA WG, hence my questions.
@inovegil The point of a live region is to announce when the user’s focus (programmatic or virtual cursor) is elsewhere.
If the message is only relevant when the user is already in it, then a live region is the wrong tool.
Typically the messages in a chat would be a different node (as the user might keep focus on the input).
Some more context:
https://smhigley.github.io/slides/notification-lives/#/20