On Wed, Jan 30, 2013 at 2:21 PM, Ian Hickson <[email protected]> wrote: > Does anyone have any examples of UIs that give "page up" and "page down" > controls to change values that can also be set to out-of-range values so > we can study how existing UIs handle this?
In Chrome Dev Tools, setting z-index: 1.1 and then pressing SHIFT+UP moves the value to 11.1. I don't believe the dev tools ever correct for step mismatches or guard against out of range errors. I don't think that's the result we want though, since we should end up on a valid value.
