Closed
Bug 253306
Opened 20 years ago
Closed 20 years ago
<link href> tag doesn't recognize '..' as directory up, unlike IE
Categories
(Firefox :: File Handling, defect)
Tracking
()
RESOLVED
INVALID
People
(Reporter: ed, Assigned: bugs)
References
()
Details
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; a grande über browser; .NET CLR 1.0.3705; .NET CLR 1.1.4322)
Build Identifier:
<link href> tag doesn't recognize '..' as directory up, unlike IE
<link href="..\..\stylesheets\stylesheet.css" rel=stylesheet type="text/css">
doesn't work in Firefox, but works in IE. I don't know the HTML spec, or if ..
is supposed to work.
Reproducible: Always
Steps to Reproduce:
1.load a page with the above link href
2.rinse
3.repeat
Actual Results:
stylesheet failed to load
Expected Results:
loaded the stylesheet properly.
Comment 1•20 years ago
|
||
Your slashes are backward. It should read <link
href="../../stylesheets/stylesheet.css" rel=stylesheet type="text/css">
The wrong-way slash isn't valid. IE just accepts it anyway.
Status: UNCONFIRMED → RESOLVED
Closed: 20 years ago
Resolution: --- → INVALID
Summary: <link href> tag doesn't recognize '..' as directory up, unlike IE → <link href> tag doesn't recognize '..' as directory up, unlike IE
You need to log in
before you can comment on or make changes to this bug.
Description
•