From a40dbd080d07d8d73edfc69cb6794824714bf2e5 Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Thu, 9 Jan 2025 13:50:47 +0000 Subject: [PATCH] LibWeb/CSS: Remove CSSNumericType::matches_resolution_percentage() This isn't a spec type. --- Libraries/LibWeb/CSS/CSSNumericType.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Libraries/LibWeb/CSS/CSSNumericType.h b/Libraries/LibWeb/CSS/CSSNumericType.h index f29cadc384..a12ebde079 100644 --- a/Libraries/LibWeb/CSS/CSSNumericType.h +++ b/Libraries/LibWeb/CSS/CSSNumericType.h @@ -78,7 +78,6 @@ public: bool matches_number() const; bool matches_percentage() const; bool matches_resolution() const { return matches_dimension(BaseType::Resolution); } - bool matches_resolution_percentage() const { return matches_dimension_percentage(BaseType::Resolution); } bool matches_time() const { return matches_dimension(BaseType::Time); } bool matches_time_percentage() const { return matches_dimension_percentage(BaseType::Time); }