1
0
Fork 0
firefox/testing/web-platform/tests/storage/storagemanager-persist.https.window.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

17 lines
611 B
JavaScript

// META: title=StorageManager: persist()
// META: script=/resources/testdriver.js
// META: script=/resources/testdriver-vendor.js
// META: script=resources/helpers.js
promise_setup(async () => {
await tryDenyingPermission();
});
promise_test(function() {
var promise = navigator.storage.persist();
assert_true(promise instanceof Promise,
'navigator.storage.persist() returned a Promise.');
return promise.then(function(result) {
assert_equals(typeof result, 'boolean', result + ' should be boolean');
});
}, 'navigator.storage.persist() returns a promise that resolves.');