Bug 137414

Summary: Web Inspector: CSS Pretty Printing fails to put space between rgb(...) and numbers in minified gradients
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:27:35 PDT
* TEST
div{background:linear-gradient(top,rgb(126,198,234)0%,rgb(70,179,234)45%,rgb(3,135,201)100%);}

* ACTUAL
div {
    background: linear-gradient(top, rgb(126, 198, 234)0%, rgb(70, 179, 234)45%, rgb(3, 135, 201)100%);
}


* EXPECTED
div {
    background: linear-gradient(top, rgb(126, 198, 234) 0%, rgb(70, 179, 234) 45%, rgb(3, 135, 201) 100%);
}
Comment 1 Radar WebKit Bug Importer 2014-10-03 16:27:58 PDT
<rdar://problem/18544592>
Comment 2 Joseph Pecoraro 2014-10-03 16:29:25 PDT
Created attachment 239252 [details]
[PATCH] Proposed Fix

Depends on a previous patch, bots my fail to apply.
Comment 3 Joseph Pecoraro 2014-10-08 20:39:24 PDT
<http://trac.webkit.org/changeset/174483>