mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-16 04:59:23 +00:00
DOMMatrix.to_string() throws exceptions if any of its values are non-finite. This ends up affecting CSSStyleValue because its subclass CSSTransformValue (which is about to be added) serializes CSSTransformComponents, and one of those is CSSMatrixComponent, which calls DOMMatrix.to_string(). This is all quite unfortunate, and because at the time the spec for DOMMatrix was written, CSS couldn't represent NaN or infinity. That's no longer true, so I'm hoping the spec can be updated and this can be reverted. https://github.com/w3c/fxtf-drafts/issues/611
33 lines
797 B
C++
33 lines
797 B
C++
/*
|
|
* Copyright (c) 2025, Sam Atkins <sam@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/CSS/CSSStyleValue.h>
|
|
|
|
namespace Web::CSS {
|
|
|
|
// https://drafts.css-houdini.org/css-typed-om-1/#cssimagevalue
|
|
class CSSImageValue final : public CSSStyleValue {
|
|
WEB_PLATFORM_OBJECT(CSSImageValue, CSSStyleValue);
|
|
GC_DECLARE_ALLOCATOR(CSSImageValue);
|
|
|
|
public:
|
|
[[nodiscard]] static GC::Ref<CSSImageValue> create(JS::Realm&, String constructed_from_string);
|
|
|
|
virtual ~CSSImageValue() override = default;
|
|
|
|
virtual WebIDL::ExceptionOr<String> to_string() const override;
|
|
|
|
private:
|
|
explicit CSSImageValue(JS::Realm&, String constructed_from_string);
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
|
|
String m_constructed_from_string;
|
|
};
|
|
|
|
}
|