tor-browser

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

commit db9414c708c6b4ce252a49f042c27dc7e19c8625
parent b464b81a7d686b9d3ca510b89da1a6b3a79957f1
Author: fantasai <fantasai.bugs@inkedblade.net>
Date:   Fri, 10 Oct 2025 07:49:36 +0000

Bug 1992383 [wpt PR 55221] - Add invoker argument to showPopover() in anchor integration test, a=testonly

Automatic update from web-platform-tests
Add invoker argument to showPopover() in anchor integration test

--

wpt-commits: f1c69d8d4a73da5f85f20a5affcd33e3011d5fe8
wpt-pr: 55221

Diffstat:
Mtesting/web-platform/tests/html/semantics/popovers/popover-alignment-001.html | 2+-
Mtesting/web-platform/tests/html/semantics/popovers/popover-alignment-002.html | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/testing/web-platform/tests/html/semantics/popovers/popover-alignment-001.html b/testing/web-platform/tests/html/semantics/popovers/popover-alignment-001.html @@ -21,6 +21,6 @@ Orange box should be centered on the screen. <div id="p1" popover></div> <script> -document.querySelector("[popover]").showPopover(); +document.querySelector("[popover]").showPopover({ source: document.querySelector("button") }); document.documentElement.removeAttribute("class"); </script> diff --git a/testing/web-platform/tests/html/semantics/popovers/popover-alignment-002.html b/testing/web-platform/tests/html/semantics/popovers/popover-alignment-002.html @@ -21,6 +21,6 @@ Orange box should be centered vertically against the left edge of the blue box. <div id="p3" popover style="position-area: left span-all"></div> <script> -document.querySelector("[popover]").showPopover(); +document.querySelector("[popover]").showPopover({ source: document.querySelector("button") }); document.documentElement.removeAttribute("class"); </script>