diff --git a/Libraries/LibHTML/Layout/ComputedStyle.h b/Libraries/LibHTML/Layout/ComputedStyle.h index cbb0f5383a..f603e6cd7f 100644 --- a/Libraries/LibHTML/Layout/ComputedStyle.h +++ b/Libraries/LibHTML/Layout/ComputedStyle.h @@ -3,11 +3,6 @@ #include #include -enum FontStyle { - Normal, - Bold, -}; - class ComputedStyle { public: ComputedStyle(); @@ -21,8 +16,6 @@ public: const LengthBox& padding() const { return m_padding; } const LengthBox& border() const { return m_border; } - FontStyle font_style() const { return m_font_style; } - const Size& size() const { return m_size; } Size& size() { return m_size; } @@ -41,6 +34,4 @@ private: LengthBox m_border; Size m_size; - - FontStyle m_font_style { FontStyle::Normal }; };