Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
Dialog: Add aria-modal support #2257
Dialog: Add aria-modal support #2257
Changes from 2 commits
a8a6e26
729c6d0
268dc62
7f88e7f
22ea1a7
546144d
2506b1c
4810065
8283b78
42edf77
174bb27
e42ab78
3da0e24
67490a0
2b40401
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Discussed with @rpkoller, this is a possible change to the tests given the suggested changes in https://github.com/jquery/jquery-ui/pull/2257/files#r1619122875.
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.
if
s like that are not a good practice in test - you'd still be testing only one of them and the other would be left untested. We need both tests to run. We need one dialog with themodal
option set - and then verify thearia-modal
attribute is set to"true"
, and another one without themodal
option that verifies the attribute has not been set.This test is failing right now because the dialog was created without the
modal
option.I'd recommend creating a separate test just after this one titled
ARIA, aria-modal
where you create three dialogs - one with themodal
option set totrue
, one tofalse
and one with no such option passed, and verify properaria-model
value or presence for each of them.This
"ARIA"
test should be reverted to its initial form, all new assertions would be added to this new test.