Skip to content
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

Improving accessability - added aria presentation role for layout tables #10108

Open
wants to merge 6 commits into
base: main
Choose a base branch
from

Conversation

Lonzak
Copy link

@Lonzak Lonzak commented Mar 27, 2025

According to accessibility rules layout tables exist merely to position content visually and should not be used in HTML5.
Screen readers may interpret them as data tables (i.e., announcing column and row numbers) etc). To change that in GWT would be a bigger task. So as a minor improvement those tables should be marked as layout tables. This can be done by assigning the role="presentation" to ensure it is not identified as a table to screen reader users.

Copy link
Member

@niloc132 niloc132 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the patch, a few thoughts:

  • consider spelling out UA? In the context of browsers and JS, it usually means "user agent", and I think you probably mean something else like usability/accessibility? Substituting "user agent"(e.g. "the browser") doesn't make sense in your title or description, and I don't see a obvious definition searching for the term in the context of dom and aria.

@Lonzak Lonzak changed the title Improving UA - added aria presentation role for layout tables Improving accessability - added aria presentation role for layout tables Mar 27, 2025
@Lonzak
Copy link
Author

Lonzak commented Mar 27, 2025

UA stands for Universal Accessibility but as always abbreviations mean something different in different contexts. Just accessibility is fine.
Strange with the blank after comment // I did run 'ant compile.tests checkstyle' as it is described in the readme.md and everything was fine. But no problem - I fixed it.

I also changed the code to use 'Roles' class which is much better. Thanks for the pointer.

@niloc132
Copy link
Member

UA stands for Universal Accessibility but as always abbreviations mean something different in different contexts. Just accessibility is fine. Strange with the blank after comment // I did run 'ant compile.tests checkstyle' as it is described in the readme.md and everything was fine. But no problem - I fixed it.

I also changed the code to use 'Roles' class which is much better. Thanks for the pointer.

I think the "space after //" shows up as a warning, not an error, so it won't kill your build, but it will get logged if you go hunting for it. The CI run will log it at least (annotations are currently broken..), but still need a human to point it out.

Thanks!

//aria role to indicate it is a plain layout table
tableElem.setAttribute("role", "presentation");
// aria role to indicate it is a plain layout table
Roles.getPresentationRole().set(tableElem);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In the other cases it's clear that the table is just for presentation, here it's not obvious, people might actually use this to display tabular data. Since users can easily add the role when needed, I would suggest leaving HTMLTable and its subclasses like Grid as is.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Interesting - for me Grid and Flextable was only for layouting (... and in most cases it is probably used for this) if a data table is needed one should use CellTable or DataGrid. But sure there is no restriction and e.g. FlexTable could be manually extended with ...

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be removed.

CellTable and DataGrid are advanced widgets that had been introduced as a faster alternative to Grid/FlexTable, especially for slow browsers like IE 6 (or if the data table is really large). For smaller/normal data tables using Grid / FlexTable is the way to go. Of course you can always misuse them to do pure layout but then you have to set the aria role yourself.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok removed the role setting for HTMLTable

//aria role to indicate it is a plain layout table
tableElem.setAttribute("role", "presentation");
// aria role to indicate it is a plain layout table
Roles.getPresentationRole().set(tableElem);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be removed.

CellTable and DataGrid are advanced widgets that had been introduced as a faster alternative to Grid/FlexTable, especially for slow browsers like IE 6 (or if the data table is really large). For smaller/normal data tables using Grid / FlexTable is the way to go. Of course you can always misuse them to do pure layout but then you have to set the aria role yourself.

@Lonzak Lonzak requested a review from jnehlmeier March 28, 2025 08:15
zbynek
zbynek previously approved these changes Mar 28, 2025
Copy link
Member

@jnehlmeier jnehlmeier left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just two small things, otherwise it looks good.

@@ -15,6 +15,7 @@
*/
package com.google.gwt.user.client.ui;

import com.google.gwt.aria.client.Roles;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove the unused import

@niloc132
Copy link
Member

UA stands for Universal Accessibility but as always abbreviations mean something different in different contexts. Just accessibility is fine. Strange with the blank after comment // I did run 'ant compile.tests checkstyle' as it is described in the readme.md and everything was fine. But no problem - I fixed it.

I also changed the code to use 'Roles' class which is much better. Thanks for the pointer.

I think the "space after //" shows up as a warning, not an error, so it won't kill your build, but it will get logged if you go hunting for it. The CI run will log it at least (annotations are currently broken..), but still need a human to point it out.

Thanks!

zbynek
zbynek previously approved these changes Mar 31, 2025
Copy link
Member

@niloc132 niloc132 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like this is failing tests (verified in github actions by pushing to aria-test on my fork):

    [junit] Running com.google.gwt.user.UiSuite
    [junit] Tests run: 1008, Failures: 1, Errors: 38, Skipped: 0, Time elapsed: 143.649 sec
    [junit] Test com.google.gwt.user.UiSuite FAILED

https://github.com/niloc132/gwt/actions/runs/14194633693
One of the stack traces:

java.lang.AssertionError: Element cannot be null.
	at java.lang.Throwable.Throwable(Throwable.java:73)
	at java.lang.Error.Error(Error.java:30)
	at java.lang.AssertionError.AssertionError(AssertionError.java:51)
	at com.google.gwt.aria.client.RoleImpl.set(RoleImpl.java:219)
	at com.google.gwt.user.client.ui.TreeItem$TreeItemImpl.initializeClonableElements(TreeItem.java:92)
	at com.google.gwt.user.client.ui.TreeItem$TreeItemImpl.TreeItem$TreeItemImpl(TreeItem.java:65)
	at com.google.gwt.user.client.ui.TreeItem.$clinit(TreeItem.java:255)
	at com.google.gwt.user.client.ui.TreeItem.TreeItem(TreeItem.java:307)
	at com.google.gwt.user.client.ui.Tree.init(Tree.java:1088)
	at com.google.gwt.user.client.ui.Tree.Tree(Tree.java:204)
	at com.google.gwt.uibinder.test.client.UiBinderJsInteropTest_MyWidgetBasedUi_BinderImpl$Widgets.build_myTree(UiBinderJsInteropTest_MyWidgetBasedUi_BinderImpl.java:2162)
	at com.google.gwt.uibinder.test.client.UiBinderJsInteropTest_MyWidgetBasedUi_BinderImpl$Widgets.get_myTree(UiBinderJsInteropTest_MyWidgetBasedUi_BinderImpl.java:2158)
	at com.google.gwt.uibinder.test.client.UiBinderJsInteropTest_MyWidgetBasedUi_BinderImpl$Widgets.build_f_HTMLPanel1(UiBinderJsInteropTest_MyWidgetBasedUi_BinderImpl.java:1350)
	at com.google.gwt.uibinder.test.client.UiBinderJsInteropTest_MyWidgetBasedUi_BinderImpl$Widgets.get_f_HTMLPanel1(UiBinderJsInteropTest_MyWidgetBasedUi_BinderImpl.java:1209)
	at com.google.gwt.uibinder.test.client.UiBinderJsInteropTest_MyWidgetBasedUi_BinderImpl$Widgets.build_root(UiBinderJsInteropTest_MyWidgetBasedUi_BinderImpl.java:1078)
	at com.google.gwt.uibinder.test.client.UiBinderJsInteropTest_MyWidgetBasedUi_BinderImpl$Widgets.get_root(UiBinderJsInteropTest_MyWidgetBasedUi_BinderImpl.java:1070)
	at com.google.gwt.uibinder.test.client.UiBinderJsInteropTest_MyWidgetBasedUi_BinderImpl.createAndBindUi(UiBinderJsInteropTest_MyWidgetBasedUi_BinderImpl.java:185)
	at com.google.gwt.uibinder.test.client.UiBinderJsInteropTest_MyWidgetBasedUi_BinderImpl.createAndBindUi(UiBinderJsInteropTest_MyWidgetBasedUi_BinderImpl.java:182)
	at com.google.gwt.uibinder.test.client.UiBinderJsInteropTest$MyWidgetBasedUi.init(UiBinderJsInteropTest.java:40)
	at com.google.gwt.uibinder.test.client.WidgetBasedUi.WidgetBasedUi(WidgetBasedUi.java:277)
	at com.google.gwt.uibinder.test.client.UiBinderJsInteropTest$MyWidgetBasedUi.UiBinderJsInteropTest$MyWidgetBasedUi(UiBinderJsInteropTest.java:30)
	at com.google.gwt.uibinder.test.client.UiBinderJsInteropTest.testJsElementTypes(UiBinderJsInteropTest.java:45)

From looking at TreeItem.java, you are calling Roles.getPresentationRole().set(BASE_BARE_ELEM) before BASE_BARE_ELEM was first assigned in initializeClonableElements().

I did not check other stack traces.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants