LibWeb/CSS: Implement CSSNumericType.equals()

This commit is contained in:
Sam Atkins
2025-08-22 12:53:15 +01:00
committed by Andreas Kling
parent d29084997e
commit 7be645a091
Notes: github-actions[bot] 2025-08-29 09:58:23 +00:00
22 changed files with 181 additions and 16 deletions

View File

@@ -27,6 +27,7 @@ public:
virtual void initialize(JS::Realm&) override;
virtual void visit_edges(Visitor&) override;
bool is_equal_numeric_values(GC::Ref<CSSNumericArray> other) const;
private:
CSSNumericArray(JS::Realm&, Vector<GC::Ref<CSSNumericValue>>);