Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

// META: title=StorageManager: result of persist() matches result of persisted()
// META: script=/resources/testdriver.js
// META: script=/resources/testdriver-vendor.js
// META: script=resources/helpers.js
promise_setup(async () => {
await tryDenyingPermission();
});
promise_test(async t => {
var persistResult = await navigator.storage.persist();
assert_equals(typeof persistResult, 'boolean', persistResult + ' should be boolean');
var persistedResult = await navigator.storage.persisted();
assert_equals(typeof persistedResult, 'boolean', persistedResult + ' should be boolean');
assert_equals(persistResult, persistedResult);
}, 'navigator.storage.persist() resolves to a value that matches navigator.storage.persisted()');