diff options
Diffstat (limited to 'testing/web-platform/tests/contacts/resources/non-main-frame-select.html')
-rw-r--r-- | testing/web-platform/tests/contacts/resources/non-main-frame-select.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/testing/web-platform/tests/contacts/resources/non-main-frame-select.html b/testing/web-platform/tests/contacts/resources/non-main-frame-select.html new file mode 100644 index 0000000000..c64ecd067c --- /dev/null +++ b/testing/web-platform/tests/contacts/resources/non-main-frame-select.html @@ -0,0 +1,9 @@ +<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> |