https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 7208979a308347c4379e0669b83de1a013176a2b authored by Yutaka Hirano on 24 April 2018, 07:30:37 UTC
fix
Tip revision: 7208979
storagemanager-persist-worker.js
importScripts('/resources/testharness.js');

test(function() {
  assert_false('persist' in navigator.storage);
}, 'navigator.storage.persist should not exist in workers');

done();
back to top