mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-04 15:19:42 +00:00
LibWeb: Rename Window::open_impl()
to Window::window_open_steps()
This is the same name used in the specification.
This commit is contained in:
parent
b999f925dc
commit
f3c6326f27
Notes:
github-actions[bot]
2024-10-20 10:43:18 +00:00
Author: https://github.com/tcl3
Commit: f3c6326f27
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1880
3 changed files with 4 additions and 4 deletions
|
@ -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(); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue