8000 Define concept of minimum role by scottaohara · Pull Request #454 · w3c/html-aam · GitHub
[go: up one dir, main page]

Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
3efda34
Update index.html
scottaohara Jan 10, 2023
b462c24
update per Aaron's review
scottaohara Jan 10, 2023
c6bae18
grammar fix
stevefaulkner Jan 16, 2023
cc5b7ab
Update index.html
scottaohara Jan 19, 2023
b1fdcde
Update index.html
scottaohara Jan 19, 2023
be28084
remove stray fragment
scottaohara Jan 24, 2023
c1a3f1f
minor markup formatting adjustment
scottaohara Jan 24, 2023
e2ac6f8
clarify minimum role conditions
scottaohara Jan 24, 2023
19a12bd
reverts typo fix
scottaohara Jan 31, 2023 8000
ef36600
Merge branch 'gh-pages' into minimum-role
scottaohara Jan 31, 2023
02f6b5a
Update index.html
scottaohara Jan 31, 2023
f7ba989
Merge branch 'gh-pages' into minimum-role
scottaohara Feb 2, 2023
ed50c33
remove contenteditable from taking part in minimum role
scottaohara Mar 2, 2023
efb7337
Merge branch 'gh-pages' into minimum-role
scottaohara Apr 8, 2023
e7b17f7
Merge branch 'gh-pages' into minimum-role
scottaohara Apr 11, 2023
69513e2
edits to the steps to determine minimum role
scottaohara Apr 24, 2023
c013064
Update index.html
scottaohara May 10, 2023
6257a68
Merge branch 'gh-pages' into minimum-role
scottaohara May 10, 2023
fbe8161
Merge branch 'gh-pages' into minimum-role
scottaohara May 15, 2023
df7200a
Merge branch 'gh-pages' into minimum-role
scottaohara May 19, 2023
4519a4e
Merge branch 'gh-pages' into minimum-role
scottaohara Aug 17, 2023
6adfe58
edits to mention 'computed role'
scottaohara Aug 17, 2023
1e217e1
Merge branch 'gh-pages' into minimum-role
scottaohara Aug 18, 2023
8bd08ac
Merge branch 'gh-pages' into minimum-role
scottaohara Nov 7, 2023
e6b5963
Update index.html
scottaohara Nov 7, 2023
899b517
missing #
scottaohara Nov 7, 2023
8bcae45
Update index.html
scottaohara Nov 7, 2023
796734e
leave out tabindex for now
scottaohara Nov 7, 2023
ea628aa
Merge branch 'gh-pages' into minimum-role
scottaohara Dec 19, 2023
fb66dfd
Merge branch 'gh-pages' into minimum-role
scottaohara Mar 5, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update per Aaron's review
  • Loading branch information
scottaohara authored Jan 10, 2023
commit b462c24b5b78aad84dba2d2b793dbd7d9d378f7f
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -220,15 +220,15 @@ <h3 id="minimum-role">Exposing HTML Features That Require a Minimum Role</h3>
A <dfn>minimum role</dfn> is the equivalent WAI-ARIA role an element will map to when an element has no more specific implicit role. This can help ensure that users of assistive technologies get the best possible experience for commonly-used and valid HTML markup where otherwise a role would not be exposed.
</p>
<p>
A minimum role is provided under the following conditions:
A minimum role is provided when all of the following conditions are true:
</p>
<ul>
<li>
the element either has no implicit mapping or has an implicit `generic` role mapping,
<li>
the author has not specified an explicit role to the element,
<li>
the author has specified properties to the element which require a minimum role mapping.
and the author has specified properties which require a minimum role mapping for the element.
</li>
</ul>
<p>
Expand Down Expand Up @@ -3709,15 +3709,15 @@ <h3>HTML Attribute State and Property Mappings</h3>
</td>
<td class="ax">
<span class="type">Role:</span>
<a href="#el-textarea">AXtextArea</a>
<a href="#el-textarea">AXTextArea</a>
<div class="general">Use WAI-ARIA mapping</div>
</td>
<td class="comments">
<p>If the element has the `contenteditable` attribute and `aria-readonly="true"`, User Agents MUST expose only the `contenteditable` state.</p>
<p>
If the attribute exposes or inherits the `true` state, it provides a <a href="termref">minimum role</a> of <a class="core-mapping" href="#role-map-group">`group`</a>.
</p>
<!-- note: when/if contenteditable=plain-text becomes a standard, then this would have a minimum mapping of textbox -->
<!-- note: when/if contenteditable=plaintext-only becomes a standard, then this would have a minimum mapping of textbox -->
</td>
</tr>
<tr tabindex="-1" id="att-controls">
Expand Down
0