mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 20:59:16 +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
|
@ -680,7 +680,7 @@ WebIDL::ExceptionOr<JS::GCPtr<HTML::WindowProxy>> Document::open(StringView url,
|
|||
return WebIDL::InvalidAccessError::create(realm(), "Cannot perform open on a document that isn't fully active."_string);
|
||||
|
||||
// 2. Return the result of running the window open steps with url, name, and features.
|
||||
return window()->open_impl(url, name, features);
|
||||
return window()->window_open_steps(url, name, features);
|
||||
}
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#closing-the-input-stream
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue