mirror of
https://github.com/servo/servo
synced 2026-05-12 18:06:32 +02:00
9 lines
231 B
JavaScript
9 lines
231 B
JavaScript
// 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();
|