LibWeb: Resolve NavigatorBeacon FIXME regarding the partial interface

This commit is contained in:
Jelle Raaijmakers 2025-07-22 12:54:35 +02:00 committed by Sam Atkins
commit a6dfc6cdff
Notes: github-actions[bot] 2025-07-22 12:08:23 +00:00
5 changed files with 5 additions and 7 deletions

View file

@ -17,7 +17,7 @@
namespace Web::HTML {
// https://w3c.github.io/beacon/#sendbeacon-method
WebIDL::ExceptionOr<bool> NavigatorBeaconMixin::send_beacon(String const& url, Optional<Fetch::BodyInit> const& data)
WebIDL::ExceptionOr<bool> NavigatorBeaconPartial::send_beacon(String const& url, Optional<Fetch::BodyInit> const& data)
{
auto& navigator = as<Navigator>(*this);
auto& realm = navigator.realm();