Issue 1338: Increment CSS values at least significant digit
Steps to reproduce
- Inspect the blue
<div>
above
- Switch to the Style side panel
- Click on the value of the
width
property to start inline editing
-
Press
Up
⇒ 8em
is shown inside the inline editor
-
Press
Ctrl+Up
⇒ 8.1em
is shown inside the inline editor
-
Press
Shift+Up
⇒ 18.1em
is shown inside the inline editor
-
Press
Down
⇒ 17.1em
is shown inside the inline editor
-
Press
Ctrl+Down
⇒ 17.0em
is shown inside the inline editor
-
Press
Shift+Down
⇒ 7em
is shown inside the inline editor
Expected Results
-
The value should be in-/decreased by 0.1, 1 or by 10 depending on
Ctrl
or Shift
or
no modifier being pressed together with
Up
/Down