-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update html-aam/roles-contextual.html with <summary> tests #43859
base: master
Are you sure you want to change the base?
Changes from 3 commits
5fe503e
4f207dc
0044ea7
4e0b589
333c3df
4f22d66
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,6 +45,16 @@ | |
<section data-testname="el-section" aria-label="x" data-expectedrole="region" class="ex">x</section> | ||
<section data-testname="el-section-no-name" class="ex-generic">x</section> | ||
|
||
<!-- el-summary --> | ||
<summary data-testname="el-summary-orphan" class="ex-generic">x</summary> | ||
<details> | ||
<ol> | ||
<li>x</li> | ||
<li>x</li> | ||
</ol> | ||
<summary>x</summary> | ||
<summary data-testname="el-summary-not-first-summary-child-of-details" class="ex-generic">x</summary> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Any idea why this one fails in WebKit with the following?
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it's due to an unused There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It looks like there's not an issue in Gecko/Chromium (perhaps WebKit is not exposing the |
||
</details> | ||
|
||
<script> | ||
AriaUtils.verifyRolesBySelector(".ex"); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not test this, the only semantic summary example?