diff options
author | michaelvogt <michael@vaadin.com> | 2013-06-19 16:15:23 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2013-07-03 11:18:57 +0000 |
commit | d2c2ebb61e64bec7aaec73aa4b75d1b8044cb021 (patch) | |
tree | 37c4ee24641ee4d2c6e29f0fa347cf9e7f1301dc /uitest/src | |
parent | d23c06a6145ca4c4f03377fc324e08693926873b (diff) | |
download | vaadin-framework-d2c2ebb61e64bec7aaec73aa4b75d1b8044cb021.tar.gz vaadin-framework-d2c2ebb61e64bec7aaec73aa4b75d1b8044cb021.zip |
Support screen reader only notifications (#11830)
Change-Id: I09391b27c0b3df538ffe74c4edb8d96224f14cd3
Diffstat (limited to 'uitest/src')
-rw-r--r-- | uitest/src/com/vaadin/tests/components/notification/NotificationsWaiAria.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/components/notification/NotificationsWaiAria.java b/uitest/src/com/vaadin/tests/components/notification/NotificationsWaiAria.java index a8861d40de..27af49a397 100644 --- a/uitest/src/com/vaadin/tests/components/notification/NotificationsWaiAria.java +++ b/uitest/src/com/vaadin/tests/components/notification/NotificationsWaiAria.java @@ -63,6 +63,9 @@ public class NotificationsWaiAria extends TestBase { item = type.addItem(Notification.TYPE_TRAY_NOTIFICATION); item.getItemProperty(CAPTION).setValue("Tray"); + item = type.addItem(Notification.Type.ASSISTIVE_NOTIFICATION); + item.getItemProperty(CAPTION).setValue("Assistive"); + type.setValue(type.getItemIds().iterator().next()); addComponent(type); |