trisquel-icecat/icecat/testing/web-platform/tests/contacts/resources/non-main-frame-select.html

9 lines
288 B
HTML

<script>
'use strict';
window.onload = function() {
navigator.contacts.select(['name', 'email'], { multiple: true })
.then(results => parent.postMessage({ errorMsg: '' }, '*'))
.catch(exception => parent.postMessage({ errorMsg: exception.name }, '*'));
}
</script>