chromium/third_party/blink/web_tests/external/wpt/bluetooth/requestDevice/canonicalizeFilter/same-company-identifier.https.window.js

// META: script=/resources/testdriver.js
// META: script=/resources/testdriver-vendor.js
// META: script=/bluetooth/resources/bluetooth-test.js
// META: script=/bluetooth/resources/bluetooth-fake-devices.js
'use strict';
const test_desc = 'Manufacturer data company identifier must be unique.';
const expected = new TypeError();

let filters = [{
  manufacturerData: [
    {
      companyIdentifier: 0x0001,
    },
    {
      companyIdentifier: 0x0001,
    }
  ]
}];

bluetooth_test(
    (t) => promise_rejects_js(
        t, TypeError, requestDeviceWithTrustedClick({filters})),
    test_desc);