1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:07:45 +00:00

LibWeb: Make IntersectionObserver GC-allocated

This commit is contained in:
Andreas Kling 2022-09-04 14:14:22 +02:00
parent fe9c5395d4
commit 25daa14a05
4 changed files with 24 additions and 14 deletions

View file

@ -5,20 +5,29 @@
*/
#include <LibWeb/DOM/Element.h>
#include <LibWeb/HTML/Window.h>
#include <LibWeb/IntersectionObserver/IntersectionObserver.h>
namespace Web::IntersectionObserver {
// https://w3c.github.io/IntersectionObserver/#dom-intersectionobserver-intersectionobserver
NonnullRefPtr<IntersectionObserver> IntersectionObserver::create_with_global_object(HTML::Window&, Bindings::CallbackType* callback, IntersectionObserverInit const& options)
JS::NonnullGCPtr<IntersectionObserver> IntersectionObserver::create_with_global_object(HTML::Window& window, Bindings::CallbackType* callback, IntersectionObserverInit const& options)
{
// FIXME: Implement
(void)callback;
(void)options;
return adopt_ref(*new IntersectionObserver);
return *window.heap().allocate<IntersectionObserver>(window.realm(), window);
}
IntersectionObserver::IntersectionObserver(HTML::Window& window)
: PlatformObject(window.realm())
{
set_prototype(&window.cached_web_prototype("IntersectionObserver"));
}
IntersectionObserver::~IntersectionObserver() = default;
// https://w3c.github.io/IntersectionObserver/#dom-intersectionobserver-observe
void IntersectionObserver::observe(DOM::Element& target)
{