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 3614 - Invalid handling of base tag + mailto:
Summary: Invalid handling of base tag + mailto:
Status: CLOSED INVALID
Alias: None
Product: LinkChecker
Classification: Unclassified
Component: checklink (show other bugs)
Version: unspecified
Hardware: PC Windows XP
: P2 normal
Target Milestone: ---
Assignee: Ville Skyttä
QA Contact: qa-dev tracking
URL: http://www.intelectric.nl/
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-08-22 11:41 UTC by Tim Heesters
Modified: 2006-08-22 12:19 UTC (History)
0 users

See Also:


Attachments

Description Tim Heesters 2006-08-22 11:41:05 UTC
Documents that contain a base-tag and mailto:-anchors are handled incorrectly. 

e.g.
...
<base href="http://www.example.com/" />
...
<a href="mailto:john.doe@example.com">John Doe</a>
...

is interpreted as:

<a href="http://www.example.com/john.doe@example.com">John Doe</a>

which of course does not exist...

As per specification, only relative URIs are to be resolved using the base tag, and as far as i know mailto:john.doe@example.com is not a relative URI.