2025-08-19 12:21:27 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2025, Sam Atkins <sam@ladybird.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <LibWeb/Bindings/PlatformObject.h>
|
|
|
|
#include <LibWeb/WebIDL/Types.h>
|
|
|
|
|
|
|
|
namespace Web::CSS {
|
|
|
|
|
|
|
|
// https://drafts.css-houdini.org/css-typed-om-1/#cssnumericarray
|
|
|
|
class CSSNumericArray : public Bindings::PlatformObject {
|
|
|
|
WEB_PLATFORM_OBJECT(CSSNumericArray, Bindings::PlatformObject);
|
|
|
|
GC_DECLARE_ALLOCATOR(CSSNumericArray);
|
|
|
|
|
|
|
|
public:
|
|
|
|
[[nodiscard]] static GC::Ref<CSSNumericArray> create(JS::Realm&, Vector<GC::Ref<CSSNumericValue>>);
|
|
|
|
|
|
|
|
virtual ~CSSNumericArray() override;
|
|
|
|
|
|
|
|
WebIDL::UnsignedLong length() const;
|
|
|
|
virtual Optional<JS::Value> item_value(size_t index) const override;
|
|
|
|
Vector<GC::Ref<CSSNumericValue>> values() { return m_values; }
|
|
|
|
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
|
|
virtual void visit_edges(Visitor&) override;
|
2025-08-22 12:53:15 +01:00
|
|
|
bool is_equal_numeric_values(GC::Ref<CSSNumericArray> other) const;
|
2025-08-19 12:21:27 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
CSSNumericArray(JS::Realm&, Vector<GC::Ref<CSSNumericValue>>);
|
|
|
|
|
|
|
|
Vector<GC::Ref<CSSNumericValue>> m_values;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|