Skip to content
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

Open
wants to merge 4 commits into
base: trunk
Choose a base branch
from

Conversation

monsieur-z
Copy link
Contributor

@monsieur-z monsieur-z commented Apr 1, 2025

Fixes #30474

Proposed changes:

This PR fixes the accessibility problems mentioned in the linked issue. In detail:

  • It removes the title attribute from the a tag. A title is not the recommended way to specify an accessible name.
  • Instead, the accessible name is specified by linking a text element with aria-labelledby. It's preferred over the aria-label attribute as the latter may not be picked up by automated translation services.
  • It deprecates jetpack_sharing_display_title in favor of a new filter named jetpack_sharing_accessible_name to mitigate confusion.
  • It removes the sharing-screen-reader-text class (and the associated CSS rules) which is no longer necessary since the accessible name is specified with aria-labelledby.
  • It was suggested in the issue to add the 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.
  • It formats the markup returned by get_link for better readibility.

Other information:

  • Have you written new tests for your changes, if applicable?
  • Have you checked the E2E test CI results, and verified that your changes do not break them?
  • Have you tested your changes on WordPress.com, if applicable (if so, you'll see a generated comment below with a script to run)?

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.

  • Spin up a Jetpack site with this branch
  • Toggle on the Add sharing buttons to your posts and pages option in /wp-admin/admin.php?page=jetpack#sharing
  • Create a new post
  • Publish it (saving a draft is not sufficient)
  • View the post
  • Notice the sharing buttons below the post. Verify they work as expected.
  • If you're able to use a screen reader, check it announces something like link, Click to share on Facebook (Opens in new window) when it reaches a sharing button
  • Otherwise, verify the button markup is similar to:
Screenshot 2025-04-01 at 2 18 10 PM

@monsieur-z monsieur-z self-assigned this Apr 1, 2025
@monsieur-z monsieur-z added [Type] Bug When a feature is broken and / or not performing as intended [Focus] Accessibility Improving usability for all users (a11y) [Status] In Progress labels Apr 1, 2025
Copy link
Contributor

github-actions bot commented Apr 1, 2025

Are you an Automattician? Please test your changes on all WordPress.com environments to help mitigate accidental explosions.

  • To test on WoA, go to the Plugins menu on a WoA dev site. Click on the "Upload" button and follow the upgrade flow to be able to upload, install, and activate the Jetpack Beta plugin. Once the plugin is active, go to Jetpack > Jetpack Beta, select your plugin (Jetpack), and enable the fix/sharedaddy-button-a11y branch.
  • To test on Simple, run the following command on your sandbox:
bin/jetpack-downloader test jetpack fix/sharedaddy-button-a11y

Interested in more tips and information?

  • In your local development environment, use the jetpack rsync command to sync your changes to a WoA dev blog.
  • Read more about our development workflow here: PCYsg-eg0-p2
  • Figure out when your changes will be shipped to customers here: PCYsg-eg5-p2

@github-actions github-actions bot added [Feature] Sharing Post sharing, sharing buttons [Plugin] Jetpack Issues about the Jetpack plugin. https://wordpress.org/plugins/jetpack/ labels Apr 1, 2025
Copy link
Contributor

github-actions bot commented Apr 1, 2025

Thank you for your PR!

When contributing to Jetpack, we have a few suggestions that can help us test and review your patch:

  • ✅ Include a description of your PR changes.
  • 🔴 Add a "[Status]" label (In Progress, Needs Review, ...).
  • ✅ Add a "[Type]" label (Bug, Enhancement, Janitorial, Task).
  • ✅ Add testing instructions.
  • ✅ Specify whether this PR includes any changes to data or privacy.
  • ✅ Add changelog entries to affected projects

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:

  1. Ensure all required checks appearing at the bottom of this PR are passing.
  2. Make sure to test your changes on all platforms that it applies to. You're responsible for the quality of the code you ship.
  3. You can use GitHub's Reviewers functionality to request a review.
  4. When it's reviewed and merged, you will be pinged in Slack to deploy the changes to WordPress.com simple once the build is done.

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.

Copy link

jp-launch-control bot commented Apr 1, 2025

Code Coverage Summary

Coverage changed in 1 file.

File Coverage Δ% Δ Uncovered
projects/plugins/jetpack/modules/sharedaddy/sharing-sources.php 106/988 (10.73%) 1.31% -3 💚

Full summary · PHP report · JS report

@monsieur-z monsieur-z marked this pull request as ready for review April 1, 2025 18:26
$accessible_name = apply_filters_deprecated(
'jetpack_sharing_display_title',
array( $accessible_name, $this, $id, $args ),
'jetpack-14.6',
Copy link
Contributor Author

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.

Copy link
Member

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.

@monsieur-z monsieur-z requested review from a team April 1, 2025 18:51
@monsieur-z monsieur-z added [Status] Needs Team Review Obsolete. Use Needs Review instead. and removed [Status] In Progress labels Apr 1, 2025
Copy link
Member

@jeherve jeherve left a 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?

public function get_link( $post_id, $query = '', $id = false, $data_attributes = array() ) {

@jeherve jeherve changed the title Fix sharing buttons accessibility Sharing: fix a11y issues in buttons' links Apr 2, 2025
@jeherve jeherve added [Status] Needs Author Reply We need more details from you. This label will be auto-added until the PR meets all requirements. and removed [Status] Needs Team Review Obsolete. Use Needs Review instead. labels Apr 2, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
[Feature] Sharing Post sharing, sharing buttons [Focus] Accessibility Improving usability for all users (a11y) [Plugin] Jetpack Issues about the Jetpack plugin. https://wordpress.org/plugins/jetpack/ [Status] Needs Author Reply We need more details from you. This label will be auto-added until the PR meets all requirements. [Type] Bug When a feature is broken and / or not performing as intended
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Sharing: use aria-label and aria-haspopup instead of hidden screen-reader elements
3 participants