Bug 137415 - Web Inspector: CSS Pretty Printing fails to put space between value functions around ending parenthesis
Summary: Web Inspector: CSS Pretty Printing fails to put space between value functions...
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Web Inspector (show other bugs)
Version: 528+ (Nightly build)
Hardware: All All
: P2 Normal
Assignee: Joseph Pecoraro
URL:
Keywords: InRadar
Depends on:
Blocks:
 
Reported: 2014-10-03 16:55 PDT by Joseph Pecoraro
Modified: 2014-10-08 20:39 PDT (History)
4 users (show)

See Also:


Attachments
[PATCH] Proposed Fix (5.05 KB, patch)
2014-10-03 16:57 PDT, Joseph Pecoraro
timothy: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Joseph Pecoraro 2014-10-03 16:55:09 PDT
* TEST
div{-webkit-transform:rotate(...)translate(...);}

* ACTUAL
div {
    -webkit-transform: rotate(...)translate(...);
}

* EXPECTED
div {
    -webkit-transform: rotate(...) translate(...);
}
Comment 1 Radar WebKit Bug Importer 2014-10-03 16:55:40 PDT
<rdar://problem/18545059>
Comment 2 Joseph Pecoraro 2014-10-03 16:57:25 PDT
Created attachment 239256 [details]
[PATCH] Proposed Fix

Do not expect this to apply on bots.
Comment 3 Joseph Pecoraro 2014-10-08 20:39:14 PDT
<http://trac.webkit.org/changeset/174484>