mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-05 06:32:30 +02:00
LibWeb: Use default equality operators for StyleValue helper structs
Co-authored-by: kleines Filmröllchen <filmroellchen@serenityos.org>
This commit is contained in:
Notes:
sideshowbarker
2024-07-17 06:46:15 +09:00
Author: https://github.com/MacDue Commit: https://github.com/SerenityOS/serenity/commit/9337892ce0 Pull-request: https://github.com/SerenityOS/serenity/pull/17470 Reviewed-by: https://github.com/AtkinsSJ ✅ Reviewed-by: https://github.com/davidot ✅
@@ -1306,31 +1306,6 @@ ErrorOr<String> FilterValueListStyleValue::to_string() const
|
||||
return builder.to_string();
|
||||
}
|
||||
|
||||
static bool operator==(Filter::Blur const& a, Filter::Blur const& b)
|
||||
{
|
||||
return a.radius == b.radius;
|
||||
}
|
||||
|
||||
static bool operator==(Filter::DropShadow const& a, Filter::DropShadow const& b)
|
||||
{
|
||||
return a.offset_x == b.offset_x && a.offset_y == b.offset_y && a.radius == b.radius && a.color == b.color;
|
||||
}
|
||||
|
||||
static bool operator==(Filter::HueRotate::Zero const&, Filter::HueRotate::Zero const&)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
static bool operator==(Filter::Color const& a, Filter::Color const& b)
|
||||
{
|
||||
return a.operation == b.operation && a.amount == b.amount;
|
||||
}
|
||||
|
||||
static bool operator==(Filter::HueRotate const& a, Filter::HueRotate const& b)
|
||||
{
|
||||
return a.angle == b.angle;
|
||||
}
|
||||
|
||||
bool FilterValueListStyleValue::equals(StyleValue const& other) const
|
||||
{
|
||||
if (type() != other.type())
|
||||
@@ -1848,11 +1823,6 @@ ErrorOr<String> LinearGradientStyleValue::to_string() const
|
||||
return builder.to_string();
|
||||
}
|
||||
|
||||
static bool operator==(EdgeRect const& a, EdgeRect const& b)
|
||||
{
|
||||
return a.top_edge == b.top_edge && a.right_edge == b.right_edge && a.bottom_edge == b.bottom_edge && a.left_edge == b.left_edge;
|
||||
}
|
||||
|
||||
bool LinearGradientStyleValue::equals(StyleValue const& other_) const
|
||||
{
|
||||
if (type() != other_.type())
|
||||
|
||||
Reference in New Issue
Block a user