1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:38:11 +00:00

LibWeb: Rename BoxModelMetrics::full_margin() => margin_box()

This matches the other member names (padding_box() and border_box().)
This commit is contained in:
Andreas Kling 2020-06-12 13:36:39 +02:00
parent 260427f0ad
commit 9cbef10bdd
4 changed files with 6 additions and 6 deletions

View file

@ -53,7 +53,7 @@ public:
float left;
};
PixelBox full_margin(const LayoutNode&) const;
PixelBox margin_box(const LayoutNode&) const;
PixelBox padding_box(const LayoutNode&) const;
PixelBox border_box(const LayoutNode&) const;