Revision 497c31799d9d2a643acc8c000f6d54e00ce56950 authored by Geoffrey Sneddon on 07 November 2018, 13:23:33 UTC, committed by GitHub on 07 November 2018, 13:23:33 UTC
Co-Authored-By: jgraham <james@hoppipolla.co.uk>
1 parent 25ae54b
Raw File
permission-query.https.any.js
// META: title=The Permission API registration for "persistent-storage"

promise_test(async t => {
  const status =
        await navigator.permissions.query({name: 'persistent-storage'});
  assert_equals(status.constructor, PermissionStatus,
                'query() result should resolve to a PermissionStatus');
  assert_true(['granted','denied', 'prompt'].includes(status.state),
              'state should be a PermissionState');
}, 'The "persistent-storage" permission is recognized');
back to top