1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 14:38:11 +00:00

LibWeb: Update Location::replace() to use navigables

This commit is contained in:
Aliaksandr Kalenik 2023-08-22 18:49:28 +02:00 committed by Andreas Kling
parent acff244335
commit d45f2a4952
4 changed files with 15 additions and 16 deletions

View file

@ -95,8 +95,6 @@ public:
WebIDL::ExceptionOr<JS::GCPtr<WindowProxy>> open_impl(StringView url, StringView target, StringView features);
bool has_animation_frame_callbacks() const { return m_animation_frame_callback_driver.has_callbacks(); }
void did_call_location_replace(Badge<Location>, DeprecatedString url);
DOM::Event* current_event() { return m_current_event.ptr(); }
DOM::Event const* current_event() const { return m_current_event.ptr(); }
void set_current_event(DOM::Event* event);