https://github.com/web-platform-tests/wpt
Raw File
Tip revision: f2b9eafbc0e58118d53b37841d9e587f45924175 authored by Olli Pettay on 14 April 2018, 16:20:15 UTC
use smooth scrolling also for history navigations
Tip revision: f2b9eaf
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