mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-30 16:28:48 +00:00
LibWeb/CSS: Implement UnicodeRangeStyleValue
This is preparation for storing at-rule descriptors as style values.
This commit is contained in:
parent
e0a03147c6
commit
09b8f73e11
Notes:
github-actions[bot]
2025-03-28 09:15:53 +00:00
Author: https://github.com/AtkinsSJ
Commit: 09b8f73e11
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4125
8 changed files with 86 additions and 0 deletions
29
Libraries/LibWeb/CSS/StyleValues/UnicodeRangeStyleValue.cpp
Normal file
29
Libraries/LibWeb/CSS/StyleValues/UnicodeRangeStyleValue.cpp
Normal file
|
@ -0,0 +1,29 @@
|
|||
/*
|
||||
* Copyright (c) 2025, Sam Atkins <sam@ladybird.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#include <LibWeb/CSS/StyleValues/UnicodeRangeStyleValue.h>
|
||||
|
||||
namespace Web::CSS {
|
||||
|
||||
UnicodeRangeStyleValue::UnicodeRangeStyleValue(Gfx::UnicodeRange unicode_range)
|
||||
: StyleValueWithDefaultOperators(Type::UnicodeRange)
|
||||
, m_unicode_range(unicode_range)
|
||||
{
|
||||
}
|
||||
|
||||
UnicodeRangeStyleValue::~UnicodeRangeStyleValue() = default;
|
||||
|
||||
String UnicodeRangeStyleValue::to_string(SerializationMode) const
|
||||
{
|
||||
return m_unicode_range.to_string();
|
||||
}
|
||||
|
||||
bool UnicodeRangeStyleValue::properties_equal(UnicodeRangeStyleValue const& other) const
|
||||
{
|
||||
return m_unicode_range == other.m_unicode_range;
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue