blob: 6b1342c3eb6aa2b83f45f0c26daae22acd3e6b2e [file] [log] [blame]
<!DOCTYPE html>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="resources.js"></script>
<script>
promise_test(function() {
return assert_promise_rejects_with_message(
navigator.contacts.select({}),
new DOMException('Unable to open a contact selector', 'AbortError'),
'navigator.contacts.select');
}, 'Select function throws exception.');
</script>