config: Add a pref for the experimental accessibility code#42333
Merged
mrobinson merged 2 commits intoservo:mainfrom Feb 10, 2026
Merged
config: Add a pref for the experimental accessibility code#42333mrobinson merged 2 commits intoservo:mainfrom
mrobinson merged 2 commits intoservo:mainfrom
Conversation
delan
reviewed
Feb 4, 2026
alice
commented
Feb 5, 2026
delan
approved these changes
Feb 5, 2026
delan
reviewed
Feb 5, 2026
f665063 to
652731a
Compare
mrobinson
reviewed
Feb 5, 2026
f274ea9 to
37e7315
Compare
mrobinson
approved these changes
Feb 6, 2026
components/config/prefs.rs
Outdated
| /// Whether or not the viewport meta tag is enabled. | ||
| pub viewport_meta_enabled: bool, | ||
| pub log_filter: String, | ||
|
|
Member
There was a problem hiding this comment.
Ultra nit: Maybe remove this newline to make spacing consistent with the other members.
Co-authored-by: delan azabani <[email protected]> Signed-off-by: Alice Boxhall <[email protected]>
37e7315 to
b4882cf
Compare
mrobinson
approved these changes
Feb 10, 2026
github-merge-queue bot
pushed a commit
that referenced
this pull request
Feb 20, 2026
this patch adds a Servo::set_accessibility_active() method that embedders can use to tell Servo to start building and sending accessibility trees to the platform, as long as the pref is enabled (#42333). doing so sets a global flag in the constellation, which is then propagated to the layout of all existing and future pipelines. Testing: none yet, no functional change Fixes: part of #4344 --------- Signed-off-by: delan azabani <[email protected]> Signed-off-by: Alice Boxhall <[email protected]> Co-authored-by: Alice Boxhall <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This adds a pref which will be used to enable the experimental accessibility tree.
Testing: No testing: just adds a pref which is currently unused.
Fixes: part of #4344