blob: d90915a38a06d717f038caab6d46e1dd6d9f84fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
importScripts("/resources/testharness.js");
test(function() {
assert_false("searchParams" in self.location,
"location object should not have a searchParams attribute");
}, "searchParams on location object");
test(function() {
var url = new URL("./foo", "http://www.example.org");
assert_equals(url.href, "http://www.example.org/foo");
assert_throws(new TypeError(), function() {
url.href = "./bar";
});
}, "Setting URL's href attribute and base URLs");
done();
|