https://github.com/web-platform-tests/wpt
Revision cd31531b419737b67c3201f89eaa1406afe27948 authored by Florian Rivoal on 26 December 2018, 08:22:48 UTC, committed by Florian Rivoal on 26 December 2018, 08:32:07 UTC
1 parent 69c2a2b
Raw File
Tip revision: cd31531b419737b67c3201f89eaa1406afe27948 authored by Florian Rivoal on 26 December 2018, 08:22:48 UTC
[css-text] Add "anywhere" equivalents to "break-word" tests
Tip revision: cd31531
storagemanager-persist.https.worker.js
// 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();
back to top