Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /storage/storagemanager-persist.https.worker.html - WPT Dashboard Interop Dashboard
// META: title=StorageManager: persist() (worker)
importScripts("/resources/testharness.js");
test(function() {
assert_false('persist' in navigator.storage);
}, 'navigator.storage.persist should not exist in workers');
done();