OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <script src="../resources/testharness.js"></script> |
| 3 <script src="../resources/testharnessreport.js"></script> |
| 4 <script src="../resources/mojo-helpers.js"></script> |
| 5 <script src="resources/mock-share-service.js"></script> |
| 6 <script> |
| 7 |
| 8 share_test((t, mock) => { |
| 9 mock.pushShareResult('the title', 'the message', 'error from browser'); |
| 10 return promise_rejects( |
| 11 t, new DOMException('error from browser', 'AbortError'), |
| 12 navigator.share('the title', 'the message')); |
| 13 }, 'share with browser-side error'); |
| 14 |
| 15 </script> |
OLD | NEW |