<!DOCTYPEHTML>
<html> <!-- While working on bug 402210, it came up that the code was doing
a.href = proto + host
which technically produces "https:host" instead of "https://host" and that the code was relying on href's setting having fixup behaviour for this kind of thing.
If we rely on it, we might as well test for it, even if it isn't the problem 402210 was meant to fix.
function runTest() {
$("testlink").href = "https:example.com";
is($("testlink").href, "https://example.com/", "Setting href on an anchor tag should fixup missing slashes after https protocol");
$("testlink").href = "ftp:example.com";
is($("testlink").href, "ftp://example.com/", "Setting href on an anchor tag should fixup missing slashes after non-http protocol");