Changes between Initial Version and Version 16 of Ticket #22476
- Timestamp:
- 02/12/2014 08:41:04 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #22476
-
Property
Severity
changed from
normal
totrivial
- Property Cc mdhansen@… mercijavier@… added
-
Property
Component
changed from
General
toAdministration
-
Property
Summary
changed from
Remove optional single and double quotes in CSS url()s
toStandardize single and double quotes in CSS url()s
-
Property
Priority
changed from
normal
tolow
-
Property
Milestone
changed from
Awaiting Review
toFuture Release
- Property Keywords ui-focus added
-
Property
Severity
changed from
-
Ticket #22476 – Description
initial v16 1 1 As per http://www.w3.org/TR/CSS2/syndata.html#value-def-uri (and other locations), single quotes {{{'}}} and double quotes {{{"}}} in {{{url()}}} values in CSS like 2 2 {{{ 3 body { background: url("../img/image ,gif");3 body { background: url("../img/image.gif"); 4 4 }}} 5 5 are optional. Most of core's CSS is already written without such quotes. The patch 22476-remove-quotes-in-url.diff removes the remaining ones, for consistency and to save us some bytes again, even in the minified CSS.