mirror of
https://github.com/servo/servo.git
synced 2025-06-30 20:13:39 +01:00
18 lines
674 B
HTML
18 lines
674 B
HTML
<!DOCTYPE html>
|
|
<meta charset=utf-8>
|
|
<title>StorageManager: persist()</title>
|
|
<meta name="help" href="https://storage.spec.whatwg.org/#dom-storagemanager-persist">
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script>
|
|
|
|
promise_test(function() {
|
|
var promise = navigator.storage.persisted();
|
|
assert_true(promise instanceof Promise,
|
|
'navigator.storage.persisted() returned a Promise.');
|
|
return promise.then(function (result) {
|
|
assert_equals(typeof result, 'boolean', result + ' should be boolean');
|
|
});
|
|
}, 'navigator.storage.persisted() returns a promise that resolves.');
|
|
|
|
</script>
|