mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-27 19:59:03 +00:00
LibWeb: Parese the CSS "cursor" property
This commit is contained in:
parent
a375133cc5
commit
e169e24104
Notes:
sideshowbarker
2024-07-18 21:50:48 +09:00
Author: https://github.com/ant1441 🔰
Commit: e169e24104
Pull-request: https://github.com/SerenityOS/serenity/pull/5558
6 changed files with 166 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue