summaryrefslogtreecommitdiffstats
path: root/dom/indexedDB/test/unit/make_URLSearchParams.js
diff options
context:
space:
mode:
Diffstat (limited to 'dom/indexedDB/test/unit/make_URLSearchParams.js')
-rw-r--r--dom/indexedDB/test/unit/make_URLSearchParams.js31
1 files changed, 31 insertions, 0 deletions
diff --git a/dom/indexedDB/test/unit/make_URLSearchParams.js b/dom/indexedDB/test/unit/make_URLSearchParams.js
new file mode 100644
index 0000000000..fc73746807
--- /dev/null
+++ b/dom/indexedDB/test/unit/make_URLSearchParams.js
@@ -0,0 +1,31 @@
+/*
+ Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/
+*/
+
+async function testSteps() {
+ const name = "URLSearchParams";
+ const options = { foo: "bar", baz: "bar" };
+ const params = new URLSearchParams(options);
+ const value = { urlSearchParams: params };
+ const key = 42;
+
+ info("Opening database");
+
+ const request = indexedDB.open(name);
+ await expectingUpgrade(request);
+
+ const database = request.result;
+
+ const objectStore = database.createObjectStore(name, {});
+
+ info("Adding value");
+
+ objectStore.add(value, key);
+
+ await requestSucceeded(request);
+
+ info("Closing database");
+
+ database.close();
+}