Closed
Bug 2621
Opened 26 years ago
Closed 26 years ago
[PP]Local URLs for STYLESHEET LINKs crashes viewer
Categories
(Core :: Layout, defect, P1)
Tracking
()
M8
People
(Reporter: cyrus, Assigned: peterl-retired)
References
()
Details
Links with local URLs for STYLESHEETS cause the viewer
to die a horrible screaming death.
For example:
<LINK REL=STYLESHEET TYPE="text/css"
HREF="http:css/w3c.css" TITLE="W3C Style">
A full URL makes things work ok here.
Send email if you want a stdlog.
Updated•26 years ago
|
Severity: major → critical
Comment 1•26 years ago
|
||
It certainly shouldn't die horribly.
However, the markup quoted is incorrect. A relative uri should not
include the scheme.
IOW, it should be:
<LINK REL=STYLESHEET TYPE="text/css"
HREF="css/w3c.css" TITLE="W3C Style">
...without the "http:".
But, it shouldn't die horribly. It should just tell the user that there was
a malformed uri in the document source.
Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 2•26 years ago
|
||
Fixed. Was passing an error code for the bad URL back to the parser. The parser
was then doing interesting things...
Updated•26 years ago
|
QA Contact: 3847
Comment 3•26 years ago
|
||
Jan please verify fix.
Updated•26 years ago
|
Status: RESOLVED → REOPENED
Comment 4•26 years ago
|
||
I still get a crash on this bug with the message:
"The application "viewer.app" has unexpectedly quit, because an error of type 2
occurred."
Here are 2 URLs to use for testing:
http://slip/projects/marvin/bugs/bug_2621/crashes.html
http://slip/projects/marvin/bugs/bug_2621/works.html
the only difference between the files is this,
works.html has this link:
<LINK rel="stylesheet" type="text/css" href="style.css" title="CSS">
crashes.html has this link:
<LINK rel="stylesheet" type="text/css" href="http://style.css" title="CSS">
(Note: Neither URL crashes on windows)
Updated•26 years ago
|
Resolution: FIXED → ---
Assignee | ||
Updated•26 years ago
|
Target Milestone: M5
Summary: Local URLs for STYLESHEET LINKs kills viewer → [PP]Local URLs for STYLESHEET LINKs kills viewer
Updated•26 years ago
|
Summary: [PP]Local URLs for STYLESHEET LINKs kills viewer → [PP]Local URLs for STYLESHEET LINKs crashes viewer
Assignee | ||
Updated•26 years ago
|
Target Milestone: M5 → M6
Assignee | ||
Updated•26 years ago
|
Target Milestone: M6 → M7
Assignee | ||
Updated•26 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 26 years ago → 26 years ago
Resolution: --- → DUPLICATE
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Comment 7•26 years ago
|
||
Verified
You need to log in
before you can comment on or make changes to this bug.
Description
•