Home | History | Annotate | Download | only in docs

Lines Matching full:toolbar

451 For example, if your extension includes a toolbar,
452 set the <code>role</code> attribute of the toolbar's DOM element as follows:
455 <pre>&lt;div role="toolbar"&gt;
482 to the example toolbar control:
485 <pre>&lt;div role="toolbar" tabindex="0" aria-activedescendant="button1"&gt;
491 property specifies which child of the toolbar receives focus
492 when the toolbar receives focus.
493 In this example, the toolbar's first button
497 specifies that the toolbar
502 Here's the complete specification for the example toolbar:
505 <pre>&lt;div role="toolbar" tabindex="0" aria-activedescendant="button1"&gt;
584 to switch the keyboard focus to the toolbar,
589 details about toolbar navigation
596 to support keyboard navigation to the toolbar.
599 access to the toolbar is provided through VoiceOver,
644 For the example toolbar,
648 to reflect the current active toolbar button.
662 // Implement circular keyboard navigation within the toolbar buttons
667 // Change the active toolbar button to the one to the right (circular).
672 // Change the active toolbar button to the one to the left (circular).
684 &lt;div role="toolbar" tabindex="0" aria-activedescendant="button1" id="tb1"