Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Release a11y node if non null
  • Loading branch information
yaakovschectman committed Oct 26, 2022
commit de9da98acca2f3e852366e5209ac4f1f07b4a918
3 changes: 3 additions & 0 deletions shell/platform/windows/window.cc
Original file line number Diff line number Diff line change
Expand Up @@ -662,6 +662,9 @@ bool Window::GetHighContrastEnabled() {
}

void Window::CreateAccessibilityRootNode() {
if (accessibility_root_) {
accessibility_root_->Release();
}
accessibility_root_ = AccessibilityRootNode::Create();
}

Expand Down