mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 15:43:20 +00:00
LibWeb/CSS: Implement CSSMathMax
Basically the same as CSSMathMin.
This commit is contained in:
parent
1a35795f47
commit
dd3007dcd7
Notes:
github-actions[bot]
2025-08-29 09:59:17 +00:00
Author: https://github.com/AtkinsSJ
Commit: dd3007dcd7
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5955
Reviewed-by: https://github.com/trflynn89
12 changed files with 322 additions and 12 deletions
36
Libraries/LibWeb/CSS/CSSMathMax.h
Normal file
36
Libraries/LibWeb/CSS/CSSMathMax.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* Copyright (c) 2025, Sam Atkins <sam@ladybird.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <LibWeb/CSS/CSSMathValue.h>
|
||||
|
||||
namespace Web::CSS {
|
||||
|
||||
// https://drafts.css-houdini.org/css-typed-om-1/#cssmathmax
|
||||
class CSSMathMax : public CSSMathValue {
|
||||
WEB_PLATFORM_OBJECT(CSSMathMax, CSSMathValue);
|
||||
GC_DECLARE_ALLOCATOR(CSSMathMax);
|
||||
|
||||
public:
|
||||
[[nodiscard]] static GC::Ref<CSSMathMax> create(JS::Realm&, NumericType, GC::Ref<CSSNumericArray>);
|
||||
static WebIDL::ExceptionOr<GC::Ref<CSSMathMax>> construct_impl(JS::Realm&, Vector<CSSNumberish>);
|
||||
|
||||
virtual ~CSSMathMax() override;
|
||||
|
||||
virtual void initialize(JS::Realm&) override;
|
||||
virtual void visit_edges(Visitor&) override;
|
||||
|
||||
GC::Ref<CSSNumericArray> values() const;
|
||||
|
||||
virtual String serialize_math_value(Nested, Parens) const override;
|
||||
|
||||
private:
|
||||
CSSMathMax(JS::Realm&, NumericType, GC::Ref<CSSNumericArray>);
|
||||
GC::Ref<CSSNumericArray> m_values;
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue