Revision 70e133613ba68282617c33db22e17b05a1f93430 authored by Anne van Kesteren on 15 August 2018, 14:25:47 UTC, committed by Anne van Kesteren on 15 August 2018, 14:25:47 UTC
1 parent 3878b81
Raw File
query-empty.tentative.https.any.js
// META: title=Web Locks API: navigator.locks.query method - no locks held
// META: script=resources/helpers.js

'use strict';

promise_test(async t => {
  const state = await navigator.locks.query();

  assert_own_property(state, 'pending', 'State has `pending` property');
  assert_true(Array.isArray(state.pending),
              'State `pending` property is an array');
  assert_array_equals(state.pending, [], 'Pending array is empty');

  assert_own_property(state, 'held', 'State has `held` property');
  assert_true(Array.isArray(state.held), 'State `held` property is an array');
  assert_array_equals(state.held, [], 'Held array is empty');
}, 'query() returns dictionary with empty arrays when no locks are held');
back to top