1
0
Fork 0
firefox/testing/web-platform/tests/storage/persisted.https.any.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

14 lines
545 B
JavaScript

// META: title=StorageManager: persisted()
test(function(t) {
assert_true('persisted' in navigator.storage);
assert_equals(typeof navigator.storage.persisted, 'function');
assert_true(navigator.storage.persisted() instanceof Promise);
}, 'persisted() method exists and returns a Promise');
promise_test(function(t) {
return navigator.storage.persisted().then(function(result) {
assert_equals(typeof result, 'boolean');
assert_equals(result, false);
});
}, 'persisted() returns a promise and resolves as boolean with false');