惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
GRAHAM CLULEY
S
Security @ Cisco Blogs
P
Proofpoint News Feed
Cisco Talos Blog
Cisco Talos Blog
D
Darknet – Hacking Tools, Hacker News & Cyber Security
C
Cyber Attacks, Cyber Crime and Cyber Security
T
Tor Project blog
WordPress大学
WordPress大学
Project Zero
Project Zero
S
Schneier on Security
P
Proofpoint News Feed
小众软件
小众软件
P
Privacy International News Feed
美团技术团队
L
LangChain Blog
Know Your Adversary
Know Your Adversary
J
Java Code Geeks
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Register - Security
The Register - Security
N
Netflix TechBlog - Medium
Microsoft Security Blog
Microsoft Security Blog
Engineering at Meta
Engineering at Meta
I
InfoQ
量子位
Vercel News
Vercel News
博客园 - 三生石上(FineUI控件)
Spread Privacy
Spread Privacy
D
DataBreaches.Net
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
U
Unit 42
P
Privacy & Cybersecurity Law Blog
C
Cybersecurity and Infrastructure Security Agency CISA
T
The Blog of Author Tim Ferriss
Latest news
Latest news
K
Kaspersky official blog
MongoDB | Blog
MongoDB | Blog
L
LINUX DO - 热门话题
Simon Willison's Weblog
Simon Willison's Weblog
云风的 BLOG
云风的 BLOG
S
Securelist
AWS News Blog
AWS News Blog
F
Fortinet All Blogs
T
Threat Research - Cisco Blogs
Stack Overflow Blog
Stack Overflow Blog
Scott Helme
Scott Helme
Help Net Security
Help Net Security
Y
Y Combinator Blog
宝玉的分享
宝玉的分享
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
T
Tenable Blog

Recent Commits to html-aria:gh-pages

Merge pull request #599 from w3c/dependabot/github_actions/actions/ch… · w3c/html-aria@1f41808 Bump actions/checkout from 6 to 7 · w3c/html-aria@8ba054e Clarify img element accessibility descriptions (#592) · w3c/html-aria@ad7241f Update select element descriptions in HTML (#598) · w3c/html-aria@7998c77 Update select role mapping to use HTML display size (#555) · w3c/html-aria@17dd4ce First pass at updating the implementation report (#590) · w3c/html-aria@89f8e75 chore: fix some typos flagged by cSpell (#596) Bump actions/checkout from 2 to 6 (#597) · w3c/html-aria@ee5c70a ci: add Dependabot for GitHub Actions (#591) revise references of hidden until found (#595) · w3c/html-aria@7c57ac1 chore: cleanup markup flagged by prettier --check (#594) chore: drop stray closing anchor tags (#593) · w3c/html-aria@d56057d Editorial wording fixes (#584) · w3c/html-aria@d7ea2ba informative li element role clarification (#578) · w3c/html-aria@ee49004 Merge pull request #575 from w3c/update-pr-link · w3c/html-aria@d29fd9f Fix link to summary clarifications PR · w3c/html-aria@861e255 Update changelog (Clarify roles and attributes for the summary elemen… specifiy -> specify (#573) · w3c/html-aria@af63465 Update index.html (#570) · w3c/html-aria@cf08b8c
Fix role attribute case in main element (#585) · w3c/html-aria@9706711
scottaohara · 2026-05-20 · via Recent Commits to html-aria:gh-pages
Original file line numberDiff line numberDiff line change

@@ -349,17 +349,15 @@ <h3>

349349

&lt;button role="button"&gt;...&lt;/button&gt;

350350

</pre>

351351

<p>

352-

Similarly, the following uses a `role=group` on a [^fieldset^] element, and a `role=Main` on a [^main^] element.

352+

Similarly, the following uses a `role=group` on a [^fieldset^] element, and a `role=main` on a [^main^] element.

353353

This is unnecessary, because the `fieldset` element is implicitly exposed as a `role=group`, as is the `main` element

354-

implicitly exposed as a `role=main`. Again, in practice this will likely not have any unforeseen side effects to users

355-

of assistive technology, as long as the declaration of the `role` value uses [=ASCII lowercase=].

356-

Please see [[[#case-sensitivity]]] for more information.

354+

implicitly exposed as a `role=main`.

357355

</p>

358356

<pre class="HTML example" title="Redundant role on fieldset and main">

359357

&lt;!-- Avoid doing this! -->

360358

&lt;fieldset role="group"&gt;...&lt;/fieldset&gt;

361-

&lt;!-- or this! -->

362-

&lt;main role="Main">...&lt;/main>

359+

&lt;!-- And similarly this! -->

360+

&lt;main role="main">...&lt;/main>

363361

</pre>

364362

<p>

365363

The following uses a `role=list` on an [^ul^] element. As the `ul` element has an implicit role of `list`,