summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/url/historical.worker.js
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/url/historical.worker.js')
-rw-r--r--testing/web-platform/tests/url/historical.worker.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/testing/web-platform/tests/url/historical.worker.js b/testing/web-platform/tests/url/historical.worker.js
new file mode 100644
index 000000000..d90915a38
--- /dev/null
+++ b/testing/web-platform/tests/url/historical.worker.js
@@ -0,0 +1,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();