mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 22:17:45 +00:00
LibWeb: Add vertical-align to ComputedValues
This commit is contained in:
parent
c9f4759329
commit
1cdbd377e7
6 changed files with 89 additions and 0 deletions
|
@ -268,6 +268,17 @@ enum class TransformFunction {
|
|||
TranslateY,
|
||||
};
|
||||
|
||||
enum class VerticalAlign {
|
||||
Baseline,
|
||||
Bottom,
|
||||
Middle,
|
||||
Sub,
|
||||
Super,
|
||||
TextBottom,
|
||||
TextTop,
|
||||
Top,
|
||||
};
|
||||
|
||||
enum class WhiteSpace {
|
||||
Normal,
|
||||
Pre,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue