Bug 137414 - Web Inspector: CSS Pretty Printing fails to put space between rgb(...) and numbers in minified gradients
Summary: Web Inspector: CSS Pretty Printing fails to put space between rgb(...) and nu...
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:27 PDT by Joseph Pecoraro
Modified: 2014-10-08 20:39 PDT (History)
4 users (show)

See Also:


Attachments
[PATCH] Proposed Fix (5.98 KB, patch)
2014-10-03 16:29 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: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>