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:
parent
1768d70823
commit
a9a5224132
2 changed files with 21 additions and 21 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue