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

LibWeb: Add 'outer' prefix to {min, max}_{width, height}

Follow the specification terminology.
This commit is contained in:
Andi Gallo 2023-07-13 02:44:47 +00:00 committed by Andreas Kling
parent 1768d70823
commit a9a5224132
2 changed files with 21 additions and 21 deletions

View file

@ -94,10 +94,10 @@ private:
size_t column_span;
size_t row_span;
CSSPixels baseline { 0 };
CSSPixels min_width { 0 };
CSSPixels max_width { 0 };
CSSPixels min_height { 0 };
CSSPixels max_height { 0 };
CSSPixels outer_min_width { 0 };
CSSPixels outer_max_width { 0 };
CSSPixels outer_min_height { 0 };
CSSPixels outer_max_height { 0 };
};
// Accessors to enable direction-agnostic table measurement.