static inline CSSBoxType referenceBox(const ShapeValue& shapeValue) { if (shapeValue.cssBox() == BoxMissing) { if (shapeValue.type() == ShapeValue::Image) return ContentBox; return MarginBox; } return shapeValue.cssBox(); }
CSSBoxType referenceBox(const ShapeValue& shapeValue) { if (shapeValue.cssBox() == BoxMissing) return MarginBox; return shapeValue.cssBox(); }