Skip to content

Commit

Permalink
[AUTO][FILECONTROL] - version 132.0.6834.163 (#1777)
Browse files Browse the repository at this point in the history
[AUTO][FILECONTROL] - version 132.0.6834.163
  • Loading branch information
uazo authored Jan 29, 2025
2 parents 7b5acf6 + bc2c226 commit ae296a4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion tools/under-control/src/RELEASE
Original file line number Diff line number Diff line change
@@ -1 +1 @@
132.0.6834.122
132.0.6834.163
Original file line number Diff line number Diff line change
Expand Up @@ -2111,14 +2111,16 @@ void WebContentsImpl::DidCapturedSurfaceControl() {
}

void WebContentsImpl::ResetAccessibility() {
// In contrast to the above, do not bother with frames in the back-forward
// cache since the reset is intended to generate new trees for observers of
// active frames.
GetPrimaryMainFrame()->ForEachRenderFrameHostIncludingSpeculative(
// Reset accessibility for all frames in this tree and inner trees, including
// speculative frame hosts and those in the back-forward cache. See comment in
// `SetAccessibilityMode()` for more details.
ForEachRenderFrameHostIncludingSpeculativeWithAction(
[this](RenderFrameHostImpl* frame_host) {
if (WebContentsImpl::FromRenderFrameHostImpl(frame_host) == this) {
frame_host->AccessibilityReset();
return FrameIterationAction::kContinue;
}
return FrameIterationAction::kSkipChildren;
});
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1193,7 +1193,7 @@
{
// crbug.com/359616070
name: "CSSRelativeColorLateResolveAlways",
status: "stable",
status: "experimental",
},
{
// crbug.com/365818844
Expand Down Expand Up @@ -4157,7 +4157,7 @@
},
{
name: "SvgInlineRootPixelSnappingScaleAdjustment",
status: "stable",
status: "test",
},
{
name: "SvgNoPixelSnappingScaleAdjustment",
Expand Down

0 comments on commit ae296a4

Please sign in to comment.