We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0b5b3b commit 57f7199Copy full SHA for 57f7199
gwtbootstrap3/src/main/java/org/gwtbootstrap3/client/ui/NavTabs.java
@@ -20,6 +20,7 @@
20
* #L%
21
*/
22
23
+import com.google.gwt.aria.client.OrientationValue;
24
import com.google.gwt.aria.client.Roles;
25
import org.gwtbootstrap3.client.ui.constants.Styles;
26
@@ -35,4 +36,8 @@ public NavTabs() {
35
36
getElement().setAttribute("tabindex", "-1");
37
Roles.getTablistRole().set(getElement());
38
}
39
+
40
+ public void setAriaOrientation(OrientationValue orientation) {
41
+ Roles.getScrollbarRole().setAriaOrientationProperty(getElement(), orientation);
42
+ }
43
0 commit comments