Bug 137415

Summary: Web Inspector: CSS Pretty Printing fails to put space between value functions around ending parenthesis
Product: WebKit Reporter: Joseph Pecoraro <joepeck>
Component: Web InspectorAssignee: Joseph Pecoraro <joepeck>
Status: RESOLVED FIXED    
Severity: Normal CC: graouts, joepeck, timothy, webkit-bug-importer
Priority: P2 Keywords: InRadar
Version: 528+ (Nightly build)   
Hardware: All   
OS: All   
Attachments:
Description Flags
[PATCH] Proposed Fix timothy: review+

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>