1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:27:45 +00:00

LibWeb: Rename IntrinsicSizeDetermination to IntrinsicSizing

This matches the exact terminology used in CSS-SIZING-3:
https://drafts.csswg.org/css-sizing-3/#intrinsic-sizing
This commit is contained in:
Andreas Kling 2022-07-20 18:12:12 +02:00
parent 97f53de8a2
commit 3ede8dbffb
5 changed files with 16 additions and 15 deletions

View file

@ -27,7 +27,8 @@ enum class LayoutMode {
// Intrinsic size determination.
// Boxes honor min-content and max-content constraints (set via LayoutState::UsedValues::{width,height}_constraint)
// by considering their containing block to be 0-sized or infinitely large in the relevant axis.
IntrinsicSizeDetermination,
// https://drafts.csswg.org/css-sizing-3/#intrinsic-sizing
IntrinsicSizing,
};
class Node : public TreeNode<Node> {