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

推荐订阅源

D
DataBreaches.Net
S
Schneier on Security
T
The Exploit Database - CXSecurity.com
Webroot Blog
Webroot Blog
AI
AI
P
Palo Alto Networks Blog
Attack and Defense Labs
Attack and Defense Labs
WordPress大学
WordPress大学
月光博客
月光博客
阮一峰的网络日志
阮一峰的网络日志
Spread Privacy
Spread Privacy
T
Tor Project blog
罗磊的独立博客
小众软件
小众软件
S
Security Affairs
酷 壳 – CoolShell
酷 壳 – CoolShell
量子位
Apple Machine Learning Research
Apple Machine Learning Research
T
Threatpost
NISL@THU
NISL@THU
博客园_首页
PCI Perspectives
PCI Perspectives
大猫的无限游戏
大猫的无限游戏
IT之家
IT之家
N
News and Events Feed by Topic
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Forbes - Security
Forbes - Security
博客园 - 叶小钗
D
Darknet – Hacking Tools, Hacker News & Cyber Security
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
L
LINUX DO - 热门话题
T
Threat Research - Cisco Blogs
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
腾讯CDC
Security Latest
Security Latest
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
The Cloudflare Blog
A
About on SuperTechFans
爱范儿
爱范儿
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
TaoSecurity Blog
TaoSecurity Blog
宝玉的分享
宝玉的分享
G
GRAHAM CLULEY
雷峰网
雷峰网
F
Full Disclosure
I
Intezer
Cloudbric
Cloudbric
博客园 - 三生石上(FineUI控件)
U
Unit 42

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`,