Home | History | Annotate | Download | only in static

Lines Matching full:role

94 The ARIA attribute <em>role</em>
97 It is expressed with the DOM attribute <code>role</code>,
98 with a value set to one of the pre-defined ARIA role strings.
100 the role attribute should not change its value.
104 The <a href="http://www.w3.org/WAI/PF/aria/roles">ARIA Role Specification</a>
105 holds detailed information on how to pick the correct role.
107 set the <code>role</code> attribute of the toolbar's DOM element as follows:
111 &lt;div role="toolbar"&gt;
116 the current state and properties of controls of a particular role.
118 For example, a control with the role "checkbox"
132 all of the states and properties available for a particular role.
142 &lt;div role="toolbar" tabindex="0" aria-activedescendant="button1"&gt;
163 &lt;div role="toolbar" tabindex="0" aria-activedescendant="button1"&gt;
164 &lt;img src="buttoncut.png" role="button" alt="cut" id="button1"&gt;
165 &lt;img src="buttoncopy.png" role="button" alt="copy" id="button2"&gt;
166 &lt;img src="buttonpaste.png" role="button" alt="paste" id="button3"&gt;
349 &lt;div role="toolbar" tabindex="0" aria-activedescendant="button1" id="tb1"
352 &lt;img src="buttoncut" role="button" alt="cut" id="button1"&gt;
353 &lt;img src="buttoncopy" role="button" alt="copy" id="button1"&gt;
354 &lt;img src="buttonpaste" role="button" alt="paste" id="button1"&gt;