summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/CSS/StyleValues
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibWeb/CSS/StyleValues')
-rw-r--r--Userland/Libraries/LibWeb/CSS/StyleValues/RectStyleValue.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/CSS/StyleValues/RectStyleValue.h b/Userland/Libraries/LibWeb/CSS/StyleValues/RectStyleValue.h
index 488b1820c1..a04073bade 100644
--- a/Userland/Libraries/LibWeb/CSS/StyleValues/RectStyleValue.h
+++ b/Userland/Libraries/LibWeb/CSS/StyleValues/RectStyleValue.h
@@ -21,7 +21,6 @@ public:
EdgeRect rect() const { return m_rect; }
virtual ErrorOr<String> to_string() const override;
- virtual bool has_rect() const override { return true; }
bool properties_equal(RectStyleValue const& other) const { return m_rect == other.m_rect; }