From bc2c2260581d51fa017679316bf55a56ae1598a1 Mon Sep 17 00:00:00 2001 From: uazo <29201891+uazo@users.noreply.github.com> Date: Wed, 29 Jan 2025 02:51:55 +0000 Subject: [PATCH] [AUTO][FILECONTROL] - version 132.0.6834.163 --- tools/under-control/src/RELEASE | 2 +- .../content/browser/web_contents/web_contents_impl.cc | 10 ++++++---- .../renderer/platform/runtime_enabled_features.json5 | 4 ++-- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/tools/under-control/src/RELEASE b/tools/under-control/src/RELEASE index a1ba52ca..ccf64b13 100644 --- a/tools/under-control/src/RELEASE +++ b/tools/under-control/src/RELEASE @@ -1 +1 @@ -132.0.6834.122 +132.0.6834.163 diff --git a/tools/under-control/src/content/browser/web_contents/web_contents_impl.cc b/tools/under-control/src/content/browser/web_contents/web_contents_impl.cc index 03b52915..62420958 100755 --- a/tools/under-control/src/content/browser/web_contents/web_contents_impl.cc +++ b/tools/under-control/src/content/browser/web_contents/web_contents_impl.cc @@ -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; }); } diff --git a/tools/under-control/src/third_party/blink/renderer/platform/runtime_enabled_features.json5 b/tools/under-control/src/third_party/blink/renderer/platform/runtime_enabled_features.json5 index db7c64ee..25336af7 100755 --- a/tools/under-control/src/third_party/blink/renderer/platform/runtime_enabled_features.json5 +++ b/tools/under-control/src/third_party/blink/renderer/platform/runtime_enabled_features.json5 @@ -1193,7 +1193,7 @@ { // crbug.com/359616070 name: "CSSRelativeColorLateResolveAlways", - status: "stable", + status: "experimental", }, { // crbug.com/365818844 @@ -4157,7 +4157,7 @@ }, { name: "SvgInlineRootPixelSnappingScaleAdjustment", - status: "stable", + status: "test", }, { name: "SvgNoPixelSnappingScaleAdjustment",