-
Notifications
You must be signed in to change notification settings - Fork 817
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
Sharing: fix a11y issues in buttons' links #42824
base: trunk
Are you sure you want to change the base?
Conversation
Are you an Automattician? Please test your changes on all WordPress.com environments to help mitigate accidental explosions.
Interested in more tips and information?
|
Thank you for your PR! When contributing to Jetpack, we have a few suggestions that can help us test and review your patch:
This comment will be updated as you work on your PR and make changes. If you think that some of those checks are not needed for your PR, please explain why you think so. Thanks for cooperation 🤖 Follow this PR Review Process:
If you have questions about anything, reach out in #jetpack-developers for guidance! Jetpack plugin: No scheduled milestone found for this plugin. If you have any questions about the release process, please ask in the #jetpack-releases channel on Slack. |
Code Coverage SummaryCoverage changed in 1 file.
|
$accessible_name = apply_filters_deprecated( | ||
'jetpack_sharing_display_title', | ||
array( $accessible_name, $this, $id, $args ), | ||
'jetpack-14.6', |
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.
replace-next-version-tag.sh
doesn't replace $$next-version$$
in this instance.
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.
It should be a single line to make work.
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.
Do we need to do the same for the Sharing Buttons block?
jetpack/projects/plugins/jetpack/extensions/blocks/sharing-button/class-sharing-source-block.php
Line 172 in d0f8e92
public function get_link( $post_id, $query = '', $id = false, $data_attributes = array() ) { |
Fixes #30474
Proposed changes:
This PR fixes the accessibility problems mentioned in the linked issue. In detail:
title
attribute from thea
tag. A title is not the recommended way to specify an accessible name.aria-labelledby
. It's preferred over thearia-label
attribute as the latter may not be picked up by automated translation services.jetpack_sharing_display_title
in favor of a new filter namedjetpack_sharing_accessible_name
to mitigate confusion.sharing-screen-reader-text
class (and the associated CSS rules) which is no longer necessary since the accessible name is specified witharia-labelledby
.aria-haspopup
attribute. According to the MDN docs, this doesn't seem appropriate to this use case since activating the link opens a new window. The accessible name mentions a new window will be open.get_link
for better readibility.Other information:
Jetpack product discussion
n/a
Does this pull request change what data or activity we track or use?
No.
Testing instructions:
Note: on this branch like on trunk, sharing buttons are rendered the same no matter the value of the Sharing_Source::button_style attribute.
/wp-admin/admin.php?page=jetpack#sharing