mirror of
https://github.com/RGBCube/serenity
synced 2025-05-30 23:38:11 +00:00
LibWeb/HTML: Port Window.focus() to IDL
This commit is contained in:
parent
b59505aba5
commit
56550b6ec0
3 changed files with 21 additions and 24 deletions
|
@ -952,7 +952,6 @@ WebIDL::ExceptionOr<void> Window::initialize_web_interfaces(Badge<WindowEnvironm
|
||||||
define_native_function(realm, "clearTimeout", clear_timeout, 1, attr);
|
define_native_function(realm, "clearTimeout", clear_timeout, 1, attr);
|
||||||
define_native_function(realm, "requestAnimationFrame", request_animation_frame, 1, attr);
|
define_native_function(realm, "requestAnimationFrame", request_animation_frame, 1, attr);
|
||||||
define_native_function(realm, "cancelAnimationFrame", cancel_animation_frame, 1, attr);
|
define_native_function(realm, "cancelAnimationFrame", cancel_animation_frame, 1, attr);
|
||||||
define_native_function(realm, "focus", focus, 0, attr);
|
|
||||||
|
|
||||||
define_native_function(realm, "queueMicrotask", queue_microtask, 1, attr);
|
define_native_function(realm, "queueMicrotask", queue_microtask, 1, attr);
|
||||||
|
|
||||||
|
@ -1067,6 +1066,25 @@ JS::NonnullGCPtr<History> Window::history() const
|
||||||
return associated_document().history();
|
return associated_document().history();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// https://html.spec.whatwg.org/multipage/interaction.html#dom-window-focus
|
||||||
|
void Window::focus()
|
||||||
|
{
|
||||||
|
// 1. Let current be this Window object's navigable.
|
||||||
|
auto* current = browsing_context();
|
||||||
|
|
||||||
|
// 2. If current is null, then return.
|
||||||
|
if (!current)
|
||||||
|
return;
|
||||||
|
|
||||||
|
// 3. Run the focusing steps with current.
|
||||||
|
// FIXME: We should pass in the browsing context itself instead of the active document, however the focusing steps don't currently accept browsing contexts.
|
||||||
|
// Passing in a browsing context always makes it resolve to its active document for focus, so this is fine for now.
|
||||||
|
run_focusing_steps(current->active_document());
|
||||||
|
|
||||||
|
// FIXME: 4. If current is a top-level traversable, user agents are encouraged to trigger some sort of notification to
|
||||||
|
// indicate to the user that the page is attempting to gain focus.
|
||||||
|
}
|
||||||
|
|
||||||
// https://html.spec.whatwg.org/multipage/window-object.html#dom-frames
|
// https://html.spec.whatwg.org/multipage/window-object.html#dom-frames
|
||||||
JS::NonnullGCPtr<WindowProxy> Window::frames() const
|
JS::NonnullGCPtr<WindowProxy> Window::frames() const
|
||||||
{
|
{
|
||||||
|
@ -1615,28 +1633,6 @@ JS_DEFINE_NATIVE_FUNCTION(Window::cancel_idle_callback)
|
||||||
return JS::js_undefined();
|
return JS::js_undefined();
|
||||||
}
|
}
|
||||||
|
|
||||||
// https://html.spec.whatwg.org/multipage/interaction.html#dom-window-focus
|
|
||||||
JS_DEFINE_NATIVE_FUNCTION(Window::focus)
|
|
||||||
{
|
|
||||||
auto* impl = TRY(impl_from(vm));
|
|
||||||
|
|
||||||
// 1. Let current be this Window object's browsing context.
|
|
||||||
auto* current = impl->browsing_context();
|
|
||||||
|
|
||||||
// 2. If current is null, then return.
|
|
||||||
if (!current)
|
|
||||||
return JS::js_undefined();
|
|
||||||
|
|
||||||
// 3. Run the focusing steps with current.
|
|
||||||
// FIXME: We should pass in the browsing context itself instead of the active document, however the focusing steps don't currently accept browsing contexts.
|
|
||||||
// Passing in a browsing context always makes it resolve to its active document for focus, so this is fine for now.
|
|
||||||
run_focusing_steps(current->active_document());
|
|
||||||
|
|
||||||
// FIXME: 4. If current is a top-level browsing context, user agents are encouraged to trigger some sort of notification to indicate to the user that the page is attempting to gain focus.
|
|
||||||
|
|
||||||
return JS::js_undefined();
|
|
||||||
}
|
|
||||||
|
|
||||||
// https://html.spec.whatwg.org/multipage/window-object.html#number-of-document-tree-child-browsing-contexts
|
// https://html.spec.whatwg.org/multipage/window-object.html#number-of-document-tree-child-browsing-contexts
|
||||||
size_t Window::document_tree_child_browsing_context_count() const
|
size_t Window::document_tree_child_browsing_context_count() const
|
||||||
{
|
{
|
||||||
|
|
|
@ -140,6 +140,7 @@ public:
|
||||||
void set_name(String const&);
|
void set_name(String const&);
|
||||||
JS::NonnullGCPtr<Location> location() const;
|
JS::NonnullGCPtr<Location> location() const;
|
||||||
JS::NonnullGCPtr<History> history() const;
|
JS::NonnullGCPtr<History> history() const;
|
||||||
|
void focus();
|
||||||
|
|
||||||
JS::NonnullGCPtr<WindowProxy> frames() const;
|
JS::NonnullGCPtr<WindowProxy> frames() const;
|
||||||
u32 length() const;
|
u32 length() const;
|
||||||
|
@ -256,7 +257,6 @@ private:
|
||||||
JS_DECLARE_NATIVE_FUNCTION(clear_timeout);
|
JS_DECLARE_NATIVE_FUNCTION(clear_timeout);
|
||||||
JS_DECLARE_NATIVE_FUNCTION(request_animation_frame);
|
JS_DECLARE_NATIVE_FUNCTION(request_animation_frame);
|
||||||
JS_DECLARE_NATIVE_FUNCTION(cancel_animation_frame);
|
JS_DECLARE_NATIVE_FUNCTION(cancel_animation_frame);
|
||||||
JS_DECLARE_NATIVE_FUNCTION(focus);
|
|
||||||
|
|
||||||
JS_DECLARE_NATIVE_FUNCTION(get_selection);
|
JS_DECLARE_NATIVE_FUNCTION(get_selection);
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,7 @@ interface Window : EventTarget {
|
||||||
attribute DOMString name;
|
attribute DOMString name;
|
||||||
[PutForwards=href, LegacyUnforgeable] readonly attribute Location location;
|
[PutForwards=href, LegacyUnforgeable] readonly attribute Location location;
|
||||||
readonly attribute History history;
|
readonly attribute History history;
|
||||||
|
undefined focus();
|
||||||
|
|
||||||
// other browsing contexts
|
// other browsing contexts
|
||||||
[Replaceable] readonly attribute WindowProxy frames;
|
[Replaceable] readonly attribute WindowProxy frames;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue