LibWeb: Rename Window::open_impl() to Window::window_open_steps()

This is the same name used in the specification.
This commit is contained in:
Tim Ledbetter 2024-10-20 10:32:37 +01:00 committed by Tim Ledbetter
commit f3c6326f27
Notes: github-actions[bot] 2024-10-20 10:43:18 +00:00
3 changed files with 4 additions and 4 deletions

View file

@ -101,7 +101,7 @@ public:
bool import_maps_allowed() const { return m_import_maps_allowed; }
void set_import_maps_allowed(bool import_maps_allowed) { m_import_maps_allowed = import_maps_allowed; }
WebIDL::ExceptionOr<JS::GCPtr<WindowProxy>> open_impl(StringView url, StringView target, StringView features);
WebIDL::ExceptionOr<JS::GCPtr<WindowProxy>> window_open_steps(StringView url, StringView target, StringView features);
bool has_animation_frame_callbacks() const { return m_animation_frame_callback_driver.has_callbacks(); }
DOM::Event* current_event() { return m_current_event.ptr(); }