mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-04-18 09:50:27 +00:00
Extract the box size computation into a new compute_box_size() that returns a plain struct with two doubles, and use it in is_active() instead of calculate_box_size() which allocates a GC-managed ResizeObserverSize object. Since is_active() only needs to compare sizes and immediately discards the result, there's no reason to involve the GC. The GC-allocating calculate_box_size() now delegates to compute_box_size() internally. This was 2.6% of CPU time while playing a YouTube video.
49 lines
1.4 KiB
C++
49 lines
1.4 KiB
C++
/*
|
|
* Copyright (c) 2024, Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Bindings/PlatformObject.h>
|
|
#include <LibWeb/Bindings/ResizeObserverPrototype.h>
|
|
|
|
namespace Web::ResizeObserver {
|
|
|
|
// https://drafts.csswg.org/resize-observer-1/#resizeobserversize
|
|
class ResizeObserverSize : public Bindings::PlatformObject {
|
|
WEB_PLATFORM_OBJECT(ResizeObserverSize, Bindings::PlatformObject);
|
|
GC_DECLARE_ALLOCATOR(ResizeObserverSize);
|
|
|
|
public:
|
|
struct RawSize {
|
|
double inline_size { 0 };
|
|
double block_size { 0 };
|
|
};
|
|
|
|
static RawSize compute_box_size(DOM::Element& target, Bindings::ResizeObserverBoxOptions observed_box);
|
|
static GC::Ref<ResizeObserverSize> calculate_box_size(JS::Realm& realm, DOM::Element& target, Bindings::ResizeObserverBoxOptions observed_box);
|
|
|
|
double inline_size() const { return m_inline_size; }
|
|
void set_inline_size(double inline_size) { m_inline_size = inline_size; }
|
|
|
|
double block_size() const { return m_block_size; }
|
|
void set_block_size(double block_size) { m_block_size = block_size; }
|
|
|
|
bool equals(RawSize const& other) const;
|
|
bool equals(ResizeObserverSize const& other) const;
|
|
|
|
private:
|
|
explicit ResizeObserverSize(JS::Realm& realm)
|
|
: PlatformObject(realm)
|
|
{
|
|
}
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
|
|
double m_inline_size { 0 };
|
|
double m_block_size { 0 };
|
|
};
|
|
|
|
}
|