summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/serial/requestPort/reject_opaque_origin.https.html
blob: ade8ae7392eccd9782f3b12f79ae71396de08913 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>

<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
  'use strict';

  promise_test(async (t) => {
    await promise_rejects_dom(
        t, 'SecurityError', navigator.serial.requestPort(),
        'requestPort() should throw a SecurityError DOMException when called ' +
        'from a context where the top-level document has an opaque origin.');
  }, 'Calls to Serial APIs from an origin with opaque top origin get blocked.');
</script>