summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/localstorage/localStorageCommon.js
diff options
context:
space:
mode:
Diffstat (limited to 'dom/tests/mochitest/localstorage/localStorageCommon.js')
-rw-r--r--dom/tests/mochitest/localstorage/localStorageCommon.js45
1 files changed, 45 insertions, 0 deletions
diff --git a/dom/tests/mochitest/localstorage/localStorageCommon.js b/dom/tests/mochitest/localstorage/localStorageCommon.js
new file mode 100644
index 000000000..5ca414067
--- /dev/null
+++ b/dom/tests/mochitest/localstorage/localStorageCommon.js
@@ -0,0 +1,45 @@
+function localStorageFlush(cb)
+{
+ var ob = {
+ observe : function(sub, top, dat)
+ {
+ os().removeObserver(ob, "domstorage-test-flushed");
+ cb();
+ }
+ };
+ os().addObserver(ob, "domstorage-test-flushed", false);
+ notify("domstorage-test-flush-force");
+}
+
+function localStorageReload()
+{
+ notify("domstorage-test-reload");
+}
+
+function localStorageFlushAndReload(cb)
+{
+ localStorageFlush(function() {
+ localStorageReload();
+ cb();
+ });
+}
+
+function localStorageClearAll()
+{
+ os().notifyObservers(null, "cookie-changed", "cleared");
+}
+
+function localStorageClearDomain(domain)
+{
+ os().notifyObservers(null, "browser:purge-domain-data", domain);
+}
+
+function os()
+{
+ return SpecialPowers.Services.obs;
+}
+
+function notify(top)
+{
+ os().notifyObservers(null, top, null);
+}