mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Auto merge of #17729 - emilio:cursor-progress, r=heycam
stylo: Honor cursor: progress. Gecko maps it to NS_STYLE_CURSOR_SPINNING: http://searchfox.org/mozilla-central/rev/cbd628b085ac809bf5a536109e6288aa91cbdff0/layout/style/nsCSSProps.cpp#1217 <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/17729) <!-- Reviewable:end -->
This commit is contained in:
commit
a240054c93
1 changed files with 1 additions and 1 deletions
|
@ -4519,7 +4519,7 @@ clip-path
|
||||||
Cursor::Pointer => structs::NS_STYLE_CURSOR_POINTER,
|
Cursor::Pointer => structs::NS_STYLE_CURSOR_POINTER,
|
||||||
Cursor::ContextMenu => structs::NS_STYLE_CURSOR_CONTEXT_MENU,
|
Cursor::ContextMenu => structs::NS_STYLE_CURSOR_CONTEXT_MENU,
|
||||||
Cursor::Help => structs::NS_STYLE_CURSOR_HELP,
|
Cursor::Help => structs::NS_STYLE_CURSOR_HELP,
|
||||||
Cursor::Progress => structs::NS_STYLE_CURSOR_DEFAULT, // Gecko doesn't support "progress" yet
|
Cursor::Progress => structs::NS_STYLE_CURSOR_SPINNING,
|
||||||
Cursor::Wait => structs::NS_STYLE_CURSOR_WAIT,
|
Cursor::Wait => structs::NS_STYLE_CURSOR_WAIT,
|
||||||
Cursor::Cell => structs::NS_STYLE_CURSOR_CELL,
|
Cursor::Cell => structs::NS_STYLE_CURSOR_CELL,
|
||||||
Cursor::Crosshair => structs::NS_STYLE_CURSOR_CROSSHAIR,
|
Cursor::Crosshair => structs::NS_STYLE_CURSOR_CROSSHAIR,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue