LibWeb: Add vertical-align to ComputedValues

This commit is contained in:
Andreas Kling 2022-02-26 01:34:07 +01:00
commit 1cdbd377e7
Notes: sideshowbarker 2024-07-17 18:15:37 +09:00
6 changed files with 89 additions and 0 deletions

View file

@ -268,6 +268,17 @@ enum class TransformFunction {
TranslateY,
};
enum class VerticalAlign {
Baseline,
Bottom,
Middle,
Sub,
Super,
TextBottom,
TextTop,
Top,
};
enum class WhiteSpace {
Normal,
Pre,