Bug 147489

Summary: Web Inspector: Add px when changing number value
Product: WebKit Reporter: Tomas <unicornspamtom>
Component: Web InspectorAssignee: Nobody <webkit-unassigned>
Status: RESOLVED WONTFIX    
Severity: Normal CC: bburg, graouts, joepeck, jonowells, mattbaker, nvasilyev, timothy, webkit-bug-importer
Priority: P2 Keywords: InRadar
Version: 528+ (Nightly build)   
Hardware: All   
OS: All   

Tomas
Reported 2015-07-31 08:15:53 PDT
Web Inspector CSS sidebar: When decreasing/increasing value from "0" to another value, add "px" unit. Example: (| means cursor) body { padding: 0|; } ALT + Up arrow key Expected result: body { padding: 1|px; }
Attachments
David Kilzer (:ddkilzer)
Comment 1 2016-09-09 11:18:04 PDT
Blaze Burg
Comment 2 2016-09-10 00:59:21 PDT
There is no way to do this unambiguously. The user could prefer ems or some other numerical unit.
Nikita Vasilyev
Comment 3 2016-09-10 12:55:49 PDT
(In reply to comment #2) > There is no way to do this unambiguously. The user could prefer ems or some > other numerical unit. "px" is the most commonly used unit, so I can see why would somebody want that. However, it's not very straightforward to implement. For z-index: 0 we don't want to append "px". `z-index: 1px` isn't a valid CSS. To implement this properly we'd have to understand the context.
Note You need to log in before you can comment on or make changes to this bug.