blob: 55f26d5660a8ced14ab995f017ba88e0fa43b3fb [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;
assert_throws_dom('SYNTAX_ERR', function() { location.assign("http://:"); });
assert_equals(location.href, href);
}, "URL that fails to parse");
</script>
</body>
</html>