blob: a2d6e0fb820344770bef287e8bf14bb31b7daf2d [file] [log] [blame]
<!DOCTYPE HTML>
<html>
<head>
<title>location_assign</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id="log"></div>
<script>
test(function () {
var href = location.href;
location.assign('#x');
assert_equals((href + "#x"), location.href, "location href");
}, "location assign");
test(function () {
var href = location.href;
location.assign("http://:");
assert_equals(location.href, href);
}, "URL that fails to parse");
</script>
</body>
</html>