This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 25087 - Escaped CSS URLs Cause Invalid "HTTP errors" errors
Summary: Escaped CSS URLs Cause Invalid "HTTP errors" errors
Status: NEW
Alias: None
Product: mobileOK authoring tools
Classification: Unclassified
Component: DDR Simple API (show other bugs)
Version: unspecified
Hardware: PC Windows NT
: P2 normal
Target Milestone: ---
Assignee: Dominique Hazael-Massieux
QA Contact: Dominique Hazael-Massieux
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-03-17 23:00 UTC by Ken Kolano
Modified: 2018-02-22 01:12 UTC (History)
1 user (show)

See Also:


Attachments

Description Ken Kolano 2014-03-17 23:00:41 UTC
CSS background images URLs don't seem to be unescaped by the test properly. This causes URLs like...

background:url(/Test%20\(Test\)/test.jpg);

...where the parenthesis in the URL are backslash escaped to be tested as...

http://<site.com>/Test%20%5c(Test%5c)/test.jpg

...instead of...

http://site.com/Test%20(Test)/test.jpg

...and results in invalid errors.