1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:17:35 +00:00

LibWeb: Parese the CSS "cursor" property

This commit is contained in:
Adam Hodgen 2021-02-21 17:41:00 +00:00 committed by Andreas Kling
parent a375133cc5
commit e169e24104
6 changed files with 166 additions and 1 deletions

View file

@ -121,6 +121,45 @@ enum class Clear {
Both,
};
enum class Cursor {
Auto,
Default,
None,
ContextMenu,
Help,
Pointer,
Progress,
Wait,
Cell,
Crosshair,
Text,
VerticalText,
Alias,
Copy,
Move,
NoDrop,
NotAllowed,
Grab,
Grabbing,
EResize,
NResize,
NeResize,
NwResize,
SResize,
SeResize,
SwResize,
WResize,
EwResize,
NsResize,
NeswResize,
NwseResize,
ColResize,
RowResize,
AllScroll,
ZoomIn,
ZoomOut,
};
enum class LineStyle {
None,
Hidden,