fix(trace-viewer): label filter inputs and make error source link keyboard-accessible - #42465
Closed
Ashraf Ali (ashrafiucse) wants to merge 2 commits into
Closed
fix(trace-viewer): label filter inputs and make error source link keyboard-accessible#42465Ashraf Ali (ashrafiucse) wants to merge 2 commits into
Ashraf Ali (ashrafiucse) wants to merge 2 commits into
Conversation
In extension mode, test-run connections engage the reuse-browsers mode,
which deliberately keeps pages alive across connections ("Don't close
the pages so that user could debug them"). However, the shared browser
was not marked as shared, so the connection cleanup treated the
contexts created by the connection as isolated and closed them all on
disconnect ("Global context cleanup"), killing the page being debugged.
Mark the browser as shared in reuse-browsers mode, so contexts with
pages survive the connection drop and are picked up by the next
connection. Empty contexts are still cleaned up on disconnect as
before.
This restores the pre-1.54 behavior where stopping a debug session in
the VS Code extension keeps the browser open for inspection and
recording.
Fixes: microsoft#37822
…board-accessible Filter inputs in the network tab and UI mode relied on placeholder alone, which is not a reliable accessible name. The error source location in the Errors tab was a span with a click handler, so it could not be focused or activated from the keyboard - now a real button styled identically. Fixes: microsoft#42463
This was referenced Aug 31, 2026
Collaborator
|
Closing in favor of #42469. |
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.
Summary
aria-labelto the network tab filter input and the UI mode filter input, matching the convention used elsewhere (Filter actions,Filter steps,Search tests)<span>to a real<button>so it is focusable and keyboard-activatable, styled identically to beforeFixes #42463