summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/encoding/sharedarraybuffer.https.html
blob: 2496edacb89ee8854e2996c3a24b18b33de4fd12 (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>

test(() => {
  const decoder = new TextDecoder('utf-8');
  const buffer = new SharedArrayBuffer(4);
  assert_throws_js(TypeError, () => {
    decoder.decode(new Uint8Array(buffer));
  }, 'constructing TextDecoder with SharedArrayBuffer view should throw');
}, 'decoding SharedArrayBuffer');

</script>