chromium/third_party/blink/web_tests/wpt_internal/bluetooth/requestLEScan/accept-all-with-filter-throws.https.https.html

<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<script src="/bluetooth/resources/bluetooth-test.js"></script>
<script src="/bluetooth/resources/bluetooth-fake-devices.js"></script>
<script src="/bluetooth/resources/bluetooth-scanning-helpers.js"></script>
<script>
'use strict';
const test_desc = 'requestLEScan scan options should have exactly one of ' +
    '\'filters\' or \'acceptAllAdvertisements:true\'. Reject with TypeError if not.';
const expected = new DOMException(
    'Failed to execute \'requestLEScan\' on \'Bluetooth\': ' +
        'Either \'filters\' should be present or ' +
        '\'acceptAllAdvertisements\' should be true, but not both.',
    new TypeError());

bluetooth_test(() => {
  return assert_promise_rejects_with_message(
      requestLEScanWithTrustedClick(
          {filters: [], acceptAllAdvertisements: true}),
      expected);
}, test_desc);
</script>