diff options
author | Knoobie <Knoobie@gmx.de> | 2017-09-18 09:47:46 +0200 |
---|---|---|
committer | Henri Sara <henri.sara@gmail.com> | 2017-09-18 10:47:46 +0300 |
commit | 4c2963ac4e0f5b2a9a59bd7791f7ea563acae6eb (patch) | |
tree | af79df6c304301b17bb568e1ba988fe5415bd780 /uitest | |
parent | 4e720f6b2b48d99b6abe615fa26f399c47122e17 (diff) | |
download | vaadin-framework-4c2963ac4e0f5b2a9a59bd7791f7ea563acae6eb.tar.gz vaadin-framework-4c2963ac4e0f5b2a9a59bd7791f7ea563acae6eb.zip |
Add aria-sort to Grid (#10007)
This adds basic support for aria-sort for Grid (https://www.w3.org/TR/wai-aria-1.1/#aria-sort).
- aria-sort is not added, if the column is not sortable
- aria-sort="none" is added, if the column is sortable but currently not sorted
- aria-sort="ascending" is added, if the column is sorted by asc
- aria-sort="descending" is added, if the column is sorted by desc
- aria-sort="other" is added, if more than 1 column is sorted, currently there is no aria-sort-order
Diffstat (limited to 'uitest')
-rw-r--r-- | uitest/src/test/java/com/vaadin/tests/components/grid/GridSortIndicatorTest.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/uitest/src/test/java/com/vaadin/tests/components/grid/GridSortIndicatorTest.java b/uitest/src/test/java/com/vaadin/tests/components/grid/GridSortIndicatorTest.java index 429e5a671e..2f623e1c51 100644 --- a/uitest/src/test/java/com/vaadin/tests/components/grid/GridSortIndicatorTest.java +++ b/uitest/src/test/java/com/vaadin/tests/components/grid/GridSortIndicatorTest.java @@ -35,18 +35,26 @@ public class GridSortIndicatorTest extends SingleBrowserTest { Assert.assertTrue("First column should be sorted ascending", grid.getHeaderCell(0, 0).getAttribute("class") .contains("sort-asc")); + Assert.assertEquals("First column should have aria-sort other", "other", + grid.getHeaderCell(0, 0).getAttribute("aria-sort")); Assert.assertEquals("First column should be first in sort order", "1", grid.getHeaderCell(0, 0).getAttribute("sort-order")); Assert.assertTrue("Second column should be sorted ascending", grid.getHeaderCell(0, 1).getAttribute("class") .contains("sort-asc")); + Assert.assertEquals("Second column should have aria-sort other", "other", + grid.getHeaderCell(0, 1).getAttribute("aria-sort")); Assert.assertEquals("Second column should be also sorted", "2", grid.getHeaderCell(0, 1).getAttribute("sort-order")); $(ButtonElement.class).caption("Sort first").first().click(); + Assert.assertEquals("First column should have aria-sort ascending", "ascending", + grid.getHeaderCell(0, 0).getAttribute("aria-sort")); Assert.assertTrue("First column should be sorted ascending", grid.getHeaderCell(0, 0).getAttribute("class") .contains("sort-asc")); + Assert.assertEquals("Second column should have aria-sort none", "none", + grid.getHeaderCell(0, 1).getAttribute("aria-sort")); Assert.assertFalse("Second column should not be sorted", grid.getHeaderCell(0, 1).getAttribute("class") .contains("sort-asc")); |