tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 00b1614076666951a187b68c388092c79392ffb5
parent 800e15ea578298f012ac7a8e5084857914198439
Author: Alexandra Borovova <aborovova@mozilla.com>
Date:   Fri, 31 Oct 2025 08:52:29 +0000

Bug 1996548 [wpt PR 55673] - Use "switch_to_parent_frame" instead "switch_frame("parent")", a=testonly

Automatic update from web-platform-tests
Use "switch_to_parent_frame" instead "switch_frame('parent')"

--

wpt-commits: 7c51d445eda9f84c43aaaf402172474728053b90
wpt-pr: 55673

Diffstat:
Mtesting/web-platform/tests/tools/wptrunner/wptrunner/executors/executorwebdriver.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/testing/web-platform/tests/tools/wptrunner/wptrunner/executors/executorwebdriver.py b/testing/web-platform/tests/tools/wptrunner/wptrunner/executors/executorwebdriver.py @@ -793,7 +793,7 @@ class WebDriverTestDriverProtocolPart(TestDriverProtocolPart): raise ValueError from e def _switch_to_parent_frame(self): - self.webdriver.switch_frame("parent") + self.webdriver.switch_to_parent_frame() class WebDriverGenerateTestReportProtocolPart(GenerateTestReportProtocolPart):