summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/url/urlsearchparams-get.html
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2021-02-25 01:03:57 +0000
committerMoonchild <moonchild@palemoon.org>2021-02-25 01:03:57 +0000
commitceadffab6b357723981a429e11222daf6cd6dcfb (patch)
tree5603053048d6a460f79b22bdf165fb74d32d39b0 /testing/web-platform/tests/url/urlsearchparams-get.html
parent14fb2f966e9b54598c451e3cb35b4aa0480dafed (diff)
parentad5a13bd501e379517da1a944c104a11d951a3f5 (diff)
downloadUXP-RC_20210225.tar
UXP-RC_20210225.tar.gz
UXP-RC_20210225.tar.lz
UXP-RC_20210225.tar.xz
UXP-RC_20210225.zip
Merge branch 'master' into releaseRC_20210225
Diffstat (limited to 'testing/web-platform/tests/url/urlsearchparams-get.html')
-rw-r--r--testing/web-platform/tests/url/urlsearchparams-get.html33
1 files changed, 0 insertions, 33 deletions
diff --git a/testing/web-platform/tests/url/urlsearchparams-get.html b/testing/web-platform/tests/url/urlsearchparams-get.html
deleted file mode 100644
index ff8782561..000000000
--- a/testing/web-platform/tests/url/urlsearchparams-get.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<!doctype html>
-<html>
-<head>
-<meta charset="utf8">
-<link rel="help" href="http://url.spec.whatwg.org/#dom-urlsearchparams-get">
-<script src="/resources/testharness.js"></script>
-<script src="/resources/testharnessreport.js"></script>
-<script src="resources/testharness-extras.js"></script>
-<script>
-test(function() {
- var params = new URLSearchParams('a=b&c=d');
- assert_equals(params.get('a'), 'b');
- assert_equals(params.get('c'), 'd');
- assert_equals(params.get('e'), null);
- params = new URLSearchParams('a=b&c=d&a=e');
- assert_equals(params.get('a'), 'b');
- params = new URLSearchParams('=b&c=d');
- assert_equals(params.get(''), 'b');
- params = new URLSearchParams('a=&c=d&a=e');
- assert_equals(params.get('a'), '');
-}, 'Get basics');
-
-test(function() {
- var params = new URLSearchParams('first=second&third&&');
- assert_true(params != null, 'constructor returned non-null value.');
- assert_true(params.has('first'), 'Search params object has name "first"');
- assert_equals(params.get('first'), 'second', 'Search params object has name "first" with value "second"');
- assert_equals(params.get('third'), '', 'Search params object has name "third" with the empty value.');
- assert_equals(params.get('fourth'), null, 'Search params object has no "fourth" name and value.');
-}, 'More get() basics');
-</script>
-</head>
-</html>