Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: dom/localstorage/test/unit/xpcshell.toml
/**
* Any copyright is dedicated to the Public Domain.
*/
/**
* This test is mainly to verify that the old pref for switching LS
* implementations has no effect anymore.
*/
add_task(async function testSteps() {
info("Setting pref");
Services.prefs.setBoolPref("dom.storage.next_gen", false);
ok(Services.domStorageManager.nextGenLocalStorageEnabled, "LSNG enabled");
});