https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 49cbe8a9470283ecfeaa05ae7c1b9e638dfff8bd authored by Chris Nardi on 19 March 2018, 18:15:09 UTC
Test both parsing orders
Tip revision: 49cbe8a
storage-persisted.js
if (this.document === undefined) {
  importScripts("/resources/testharness.js");
}

test(function(t) {
  assert_true('persisted' in navigator.storage);
  assert_equals(typeof navigator.storage.persisted, 'function');
  assert_true(navigator.storage.persisted() instanceof Promise);
}, 'persisted() method exists and returns a Promise');

promise_test(function(t) {
  return navigator.storage.persisted().then(function(result) {
    assert_equals(typeof result, 'boolean');
    assert_equals(result, false);
  });
}, 'persisted() returns a promise and resolves as boolean with false');

done();
back to top