Home | History | Annotate | Download | only in docs

Lines Matching full:role

439 The ARIA attribute <em>role</em>
442 It is expressed with the DOM attribute <code>role</code>,
443 with a value set to one of the pre-defined ARIA role strings.
445 the role attribute should not change its value.
449 The <a href="http://www.w3.org/WAI/PF/aria/roles">ARIA Role Specification</a>
450 holds detailed information on how to pick the correct role.
452 set the <code>role</code> attribute of the toolbar's DOM element as follows:
455 <pre>&lt;div role="toolbar"&gt;
460 the current state and properties of controls of a particular role.
462 For example, a control with the role "checkbox"
476 all of the states and properties available for a particular role.
485 <pre>&lt;div role="toolbar" tabindex="0" aria-activedescendant="button1"&gt;
505 <pre>&lt;div role="toolbar" tabindex="0" aria-activedescendant="button1"&gt;
506 &lt;img src="buttoncut.png" role="button" alt="cut" id="button1"&gt;
507 &lt;img src="buttoncopy.png" role="button" alt="copy" id="button2"&gt;
508 &lt;img src="buttonpaste.png" role="button" alt="paste" id="button3"&gt;
684 &lt;div role="toolbar" tabindex="0" aria-activedescendant="button1" id="tb1"
687 &lt;img src="buttoncut" role="button" alt="cut" id="button1"&gt;
688 &lt;img src="buttoncopy" role="button" alt="copy" id="button1"&gt;
689 &lt;img src="buttonpaste" role="button" alt="paste" id="button1"&gt;