mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-04 07:10:57 +00:00 
			
		
		
		
	This reverts 0e3487b9ab.
Back when I made that change, I thought we could make our StyleValue
classes match the typed-om definitions directly. However, they have
different requirements. Typed-om types need to be mutable and GCed,
whereas StyleValues are immutable and ideally wouldn't require a JS VM.
While I was already making such a cataclysmic change, I've moved it into
the StyleValues directory, because it *not* being there has bothered me
for a long time. 😅
		
	
			
		
			
				
	
	
		
			42 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2022-2024, Sam Atkins <atkinssj@serenityos.org>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <AK/FlyString.h>
 | 
						|
#include <LibWeb/CSS/Serialize.h>
 | 
						|
#include <LibWeb/CSS/StyleValues/StyleValue.h>
 | 
						|
 | 
						|
namespace Web::CSS {
 | 
						|
 | 
						|
class StringStyleValue : public StyleValueWithDefaultOperators<StringStyleValue> {
 | 
						|
public:
 | 
						|
    static ValueComparingNonnullRefPtr<StringStyleValue const> create(FlyString const& string)
 | 
						|
    {
 | 
						|
        return adopt_ref(*new (nothrow) StringStyleValue(string));
 | 
						|
    }
 | 
						|
    virtual ~StringStyleValue() override = default;
 | 
						|
 | 
						|
    FlyString const& string_value() const { return m_string; }
 | 
						|
    virtual String to_string(SerializationMode) const override { return serialize_a_string(m_string); }
 | 
						|
    virtual Vector<Parser::ComponentValue> tokenize() const override
 | 
						|
    {
 | 
						|
        return { Parser::Token::create_string(m_string) };
 | 
						|
    }
 | 
						|
 | 
						|
    bool properties_equal(StringStyleValue const& other) const { return m_string == other.m_string; }
 | 
						|
 | 
						|
private:
 | 
						|
    explicit StringStyleValue(FlyString const& string)
 | 
						|
        : StyleValueWithDefaultOperators(Type::String)
 | 
						|
        , m_string(string)
 | 
						|
    {
 | 
						|
    }
 | 
						|
 | 
						|
    FlyString m_string;
 | 
						|
};
 | 
						|
 | 
						|
}
 |