/** * The tabindex content attribute specifies whether the element is focusable, whether it can be * reached using sequential focus navigation, and the relative order of the element for the * purposes of sequential focus navigation. The name "tab index" comes from the common use of the * "tab" key to navigate through the focusable elements. The term "tabbing" refers to moving * forward through the focusable elements that can be reached using sequential focus navigation. */ @Override public DHGroup setHtmlTabIndex(final int tabIndex) { // HTML 5.0 super.setHtmlTabIndex(tabIndex); return this; }
/** * The tabindex content attribute specifies whether the element is focusable, whether it can be * reached using sequential focus navigation, and the relative order of the element for the * purposes of sequential focus navigation. The name "tab index" comes from the common use of the * "tab" key to navigate through the focusable elements. The term "tabbing" refers to moving * forward through the focusable elements that can be reached using sequential focus navigation. */ @Override public DKbd setHtmlTabIndex(final String tabIndex) { // HTML 5.0 super.setHtmlTabIndex(tabIndex); return this; }