soundasleep / iacleaner

Automatically exported from code.google.com/p/iacleaner
0 stars 0 forks source link

Immediate CSS property after url() does not have whitespace #14

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Clean up a CSS script with the following code:

a.toggle_on { background: url("../icons/plus.gif") top left no-repeat; }

What is the expected output? What do you see instead?
Expected:

a.toggle_on {
  background: url("../icons/plus.gif") top left no-repeat;
}

Actual:

a.toggle_on {
  background: url("../icons/plus.gif")top left no-repeat;
}

Notice the lack of whitespace between url() and 'top'.

Original issue reported on code.google.com by soundasleep on 28 Feb 2010 at 11:39