mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-16 13:09:41 +00:00
A lone CSSUnitValue can now be converted to a dimension StyleValue of the relevant type, as long as the property allows that type. If the value is out of the allowed range, it's wrapped in calc(). There are a few failing tests still, involving setting a negative percentage and expecting to read the computed value as 0. Those also fail in Chromium, and a similar negative-length test expects a negative computed value (not 0), so this appears to be an incorrect test. Also, we regress some of the `cursor` tests. This is because our "does property X accept type Y?" code is too naive: `cursor` is defined to accept "number [-∞,∞]" in the JSON, and that value range is used when clamping the result of calculations or interpolation. But because that entry is there, we think a single number is a valid value for `cursor`. Solving this generally is a larger task than I want to take on right now. :^)
49 lines
1.5 KiB
C++
49 lines
1.5 KiB
C++
/*
|
|
* Copyright (c) 2025, Sam Atkins <sam@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/FlyString.h>
|
|
#include <LibWeb/CSS/CSSNumericValue.h>
|
|
|
|
namespace Web::CSS {
|
|
|
|
// https://drafts.css-houdini.org/css-typed-om-1/#cssunitvalue
|
|
class CSSUnitValue final : public CSSNumericValue {
|
|
WEB_PLATFORM_OBJECT(CSSUnitValue, CSSNumericValue);
|
|
GC_DECLARE_ALLOCATOR(CSSUnitValue);
|
|
|
|
public:
|
|
[[nodiscard]] static GC::Ref<CSSUnitValue> create(JS::Realm&, double value, FlyString unit);
|
|
static GC::Ptr<CSSUnitValue> create_from_sum_value_item(JS::Realm&, SumValueItem const&);
|
|
static WebIDL::ExceptionOr<GC::Ref<CSSUnitValue>> construct_impl(JS::Realm&, double value, FlyString unit);
|
|
|
|
virtual ~CSSUnitValue() override = default;
|
|
|
|
double value() const { return m_value; }
|
|
void set_value(double value);
|
|
|
|
FlyString const& unit() const { return m_unit; }
|
|
|
|
String serialize_unit_value(Optional<double> minimum, Optional<double> maximum) const;
|
|
|
|
GC::Ptr<CSSUnitValue> converted_to_unit(FlyString const& unit) const;
|
|
|
|
virtual bool is_equal_numeric_value(GC::Ref<CSSNumericValue> other) const override;
|
|
virtual Optional<SumValue> create_a_sum_value() const override;
|
|
|
|
virtual WebIDL::ExceptionOr<NonnullRefPtr<StyleValue const>> create_an_internal_representation(PropertyNameAndID const&) const override;
|
|
|
|
private:
|
|
explicit CSSUnitValue(JS::Realm&, double value, FlyString unit, NumericType type);
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
|
|
double m_value;
|
|
FlyString m_unit;
|
|
};
|
|
|
|
}
|