1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 10:08:10 +00:00

LibWeb: Pick up the CSS "visibility" property an honor it when painting

This commit is contained in:
Andreas Kling 2022-03-21 15:42:57 +01:00
parent 01662b2320
commit df8ef03957
5 changed files with 33 additions and 1 deletions

View file

@ -315,6 +315,12 @@ enum class VerticalAlign {
Top,
};
enum class Visibility {
Visible,
Hidden,
Collapse,
};
enum class WhiteSpace {
Normal,
Pre,