summaryrefslogtreecommitdiffstats
path: root/devtools/client/storage/test/browser_storage_localstorage_add.js
diff options
context:
space:
mode:
authorjanekptacijarabaci <janekptacijarabaci@seznam.cz>2018-03-02 17:52:34 +0100
committerjanekptacijarabaci <janekptacijarabaci@seznam.cz>2018-03-02 17:52:34 +0100
commit166fb9f2893dcfb3375aa3227d116fb0ce2c6d42 (patch)
tree9bfd8bb159a20f00ff507ab9c27c22434155df23 /devtools/client/storage/test/browser_storage_localstorage_add.js
parent26e53627d6922b3b965afd76fc5d72e3cc1d9ba5 (diff)
downloadUXP-166fb9f2893dcfb3375aa3227d116fb0ce2c6d42.tar
UXP-166fb9f2893dcfb3375aa3227d116fb0ce2c6d42.tar.gz
UXP-166fb9f2893dcfb3375aa3227d116fb0ce2c6d42.tar.lz
UXP-166fb9f2893dcfb3375aa3227d116fb0ce2c6d42.tar.xz
UXP-166fb9f2893dcfb3375aa3227d116fb0ce2c6d42.zip
moebius#339: Make it possible to add cookies, local and session storage entries
Issue #31 https://github.com/MoonchildProductions/moebius/pull/339
Diffstat (limited to 'devtools/client/storage/test/browser_storage_localstorage_add.js')
-rw-r--r--devtools/client/storage/test/browser_storage_localstorage_add.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/devtools/client/storage/test/browser_storage_localstorage_add.js b/devtools/client/storage/test/browser_storage_localstorage_add.js
new file mode 100644
index 000000000..de40957b8
--- /dev/null
+++ b/devtools/client/storage/test/browser_storage_localstorage_add.js
@@ -0,0 +1,20 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+// Basic test to check the adding of localStorage entries.
+
+"use strict";
+
+add_task(function* () {
+ yield openTabAndSetupStorage(MAIN_DOMAIN + "storage-localstorage.html");
+ showAllColumns(true);
+
+ yield performAdd(["localStorage", "http://test1.example.org"]);
+ yield performAdd(["localStorage", "http://test1.example.org"]);
+ yield performAdd(["localStorage", "http://test1.example.org"]);
+ yield performAdd(["localStorage", "http://test1.example.org"]);
+ yield performAdd(["localStorage", "http://test1.example.org"]);
+
+ yield finishTests();
+});