diff options
author | michaelvogt <michael@vaadin.com> | 2013-05-07 15:33:43 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2013-05-17 10:42:26 +0000 |
commit | 2f6d5e0d8c7cf4912bb82207c0dbe26101d168cb (patch) | |
tree | c76690fc065077e8d04b01a486c81fa56bb249c0 /shared | |
parent | 6c64757b35fa4f0f1100546f1a0bc44b71f87a85 (diff) | |
download | vaadin-framework-2f6d5e0d8c7cf4912bb82207c0dbe26101d168cb.tar.gz vaadin-framework-2f6d5e0d8c7cf4912bb82207c0dbe26101d168cb.zip |
Tooltip accessibility fixes (#11799)
Remove previously added attribute for WAI-ARIA live area
Set overlay container as live area instead
Change-Id: Ie75c2993fdb42f29f307cbd294ae3352d2ef1ce3
Diffstat (limited to 'shared')
-rw-r--r-- | shared/src/com/vaadin/shared/ui/ui/UIState.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/shared/src/com/vaadin/shared/ui/ui/UIState.java b/shared/src/com/vaadin/shared/ui/ui/UIState.java index 2565de59df..16c1ed16c7 100644 --- a/shared/src/com/vaadin/shared/ui/ui/UIState.java +++ b/shared/src/com/vaadin/shared/ui/ui/UIState.java @@ -27,6 +27,10 @@ public class UIState extends TabIndexState { public PushMode pushMode = PushMode.DISABLED; + // Informing users of assistive devices, that the content of this container + // is announced automatically and does not need to be navigated into + public String overlayContainerLabel = "This content is announced automatically and does not need to be navigated into."; + public static class LoadingIndicatorConfigurationState implements Serializable { public int firstDelay = 300; @@ -52,4 +56,4 @@ public class UIState extends TabIndexState { // Default is 1 for legacy reasons tabIndex = 1; } -}
\ No newline at end of file +} |