Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: dom/quota/test/xpcshell/xpcshell.toml
/**
* Any copyright is dedicated to the Public Domain.
*/
async function testSteps() {
info("Setting pref");
Services.prefs.setBoolPref("dom.storage.client_validation", false);
info("Clearing");
let request = clear();
await requestFinished(request);
info("Creating simpledb");
let database = getSimpleDatabase(principal);
request = database.open("data");
await requestFinished(request);
info("Creating localStorage");
let storage = Services.domStorageManager.createStorage(
null,
principal,
principal,
""
);
storage.setItem("key", "value");
info("Clearing simpledb");
request = clearClient(principal, "sdb", "default");
await requestFinished(request);
info("Resetting localStorage");
request = resetClient(principal, "ls");
await requestFinished(request);
}