diff --git a/Libraries/LibHTML/DOM/Element.cpp b/Libraries/LibHTML/DOM/Element.cpp index 08b86e88e3..013e0f5699 100644 --- a/Libraries/LibHTML/DOM/Element.cpp +++ b/Libraries/LibHTML/DOM/Element.cpp @@ -176,6 +176,10 @@ RefPtr Element::computed_style() CSS::PropertyID::PaddingBottom, CSS::PropertyID::PaddingLeft, CSS::PropertyID::PaddingRight, + CSS::PropertyID::BorderTopWidth, + CSS::PropertyID::BorderBottomWidth, + CSS::PropertyID::BorderLeftWidth, + CSS::PropertyID::BorderRightWidth, }; for (CSS::PropertyID id : box_model_metrics) { auto prop = layout_node()->style().property(id);