Re: [css21] whitespace in URI values

Anne van Kesteren wrote:
> Which URIs would load if I had:
> 
> 1. @import url("\Atest.css");

I expected ./%0Atest.css

> 2. @import url(" test.css");

./%20test.css

Interestingly though, Firefox 1.5 and IE6 requested test.css for both, 
yet if we modify them to:

@import url("./\Atest.css");
@import url("./ test.css");

I believe they should refer to the same files, respectively, yet for the 
first Firefox requests ./test.css and for the second ./%20test.css.  I 
got exactly the same results in IE6.

-- 
Lachlan Hunt
http://lachy.id.au/

Received on Saturday, 12 November 2005 10:28:14 UTC